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 8f312c4 commit 7fcafb1Copy full SHA for 7fcafb1
opentelemetry-sdk/src/opentelemetry/sdk/metrics/_internal/__init__.py
@@ -62,7 +62,11 @@ def __init__(
62
instrumentation_scope: InstrumentationScope,
63
measurement_consumer: MeasurementConsumer,
64
):
65
- super().__init__(instrumentation_scope)
+ super().__init__(
66
+ name=instrumentation_scope.name,
67
+ version=instrumentation_scope.version,
68
+ schema_url=instrumentation_scope.schema_url,
69
+ )
70
self._instrumentation_scope = instrumentation_scope
71
self._measurement_consumer = measurement_consumer
72
self._instrument_id_instrument = {}
0 commit comments