File tree Expand file tree Collapse file tree
instrumentation/opentelemetry-instrumentation-logging
opentelemetry-instrumentation/src/opentelemetry/instrumentation/auto_instrumentation Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ instruments = []
3535[project .entry-points .opentelemetry_instrumentor ]
3636logging = " opentelemetry.instrumentation.logging:LoggingInstrumentor"
3737
38- [project .entry-points .opentelemetry_logging_handlers ]
38+ [project .entry-points .opentelemetry_logging_integrations ]
3939logging = " opentelemetry.instrumentation.logging.handler:_setup_logging_handler"
4040
4141[project .urls ]
Original file line number Diff line number Diff line change @@ -215,7 +215,9 @@ def _load_logging_integrations():
215215 ):
216216 enabled_logging_integrations .append ("logging" )
217217
218- for entry_point in entry_points (group = "opentelemetry_logging_handlers" ):
218+ for entry_point in entry_points (
219+ group = "opentelemetry_logging_integrations"
220+ ):
219221 # TODO: add exclusions once we move to enabled by default
220222 if entry_point .name not in enabled_logging_integrations :
221223 continue
You can’t perform that action at this time.
0 commit comments