We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03a10d0 commit ea1acd9Copy full SHA for ea1acd9
microbootstrap/instruments/opentelemetry_instrument.py
@@ -116,7 +116,11 @@ def _load_instrumentors(self) -> None:
116
raise
117
118
def is_ready(self) -> bool:
119
- return bool(self.instrument_config.opentelemetry_endpoint) or self.instrument_config.service_debug
+ return (
120
+ bool(self.instrument_config.opentelemetry_endpoint)
121
+ or self.instrument_config.service_debug
122
+ or self.instrument_config.opentelemetry_log_traces
123
+ )
124
125
def teardown(self) -> None:
126
for instrumentor_with_params in self.instrument_config.opentelemetry_instrumentors:
0 commit comments