Skip to content

Commit 69c15e8

Browse files
committed
include feedback
1 parent 936dc37 commit 69c15e8

File tree

1 file changed

+2
-2
lines changed
  • instrumentation/opentelemetry-instrumentation-asyncio/src/opentelemetry/instrumentation/asyncio

1 file changed

+2
-2
lines changed

instrumentation/opentelemetry-instrumentation-asyncio/src/opentelemetry/instrumentation/asyncio/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,12 +145,12 @@ def _instrument(self, **kwargs):
145145
self.process_duration_histogram = self._meter.create_histogram(
146146
name="asyncio.process.duration",
147147
description="Duration of asyncio process",
148-
unit="seconds",
148+
unit="s",
149149
)
150150
self.process_counts_counter = self._meter.create_counter(
151151
name="asyncio.process.count",
152152
description="Number of asyncio process",
153-
unit="1",
153+
unit="{process}",
154154
)
155155

156156
for method in self.methods_with_coroutine:

0 commit comments

Comments
 (0)