You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: instrumentation/opentelemetry-instrumentation-asyncio/src/opentelemetry/instrumentation/asyncio/__init__.py
+21-21
Original file line number
Diff line number
Diff line change
@@ -71,27 +71,27 @@ def func():
71
71
asyncio metric types
72
72
---------------------
73
73
74
-
* `asyncio.futures.duration` (ms) - Duration of the future
75
-
* `asyncio.futures.exceptions` (count) - Number of exceptions raised by the future
76
-
* `asyncio.futures.cancelled` (count) - Number of futures cancelled
77
-
* `asyncio.futures.created` (count) - Number of futures created
78
-
* `asyncio.futures.active` (count) - Number of futures active
79
-
* `asyncio.futures.finished` (count) - Number of futures finished
80
-
* `asyncio.futures.timeouts` (count) - Number of futures timed out
81
-
82
-
* `asyncio.coroutine.duration` (ms) - Duration of the coroutine
83
-
* `asyncio.coroutine.exceptions` (count) - Number of exceptions raised by the coroutine
84
-
* `asyncio.coroutine.created` (count) - Number of coroutines created
85
-
* `asyncio.coroutine.active` (count) - Number of coroutines active
86
-
* `asyncio.coroutine.finished` (count) - Number of coroutines finished
87
-
* `asyncio.coroutine.timeouts` (count) - Number of coroutines timed out
88
-
* `asyncio.coroutine.cancelled` (count) - Number of coroutines cancelled
89
-
90
-
* `asyncio.to_thread.duration` (ms) - Duration of the to_thread
91
-
* `asyncio.to_thread.exceptions` (count) - Number of exceptions raised by the to_thread
92
-
* `asyncio.to_thread.created` (count) - Number of to_thread created
93
-
* `asyncio.to_thread.active` (count) - Number of to_thread active
94
-
* `asyncio.to_thread.finished` (count) - Number of to_thread finished
74
+
* asyncio.futures.duration (ms) - Duration of the future
75
+
* asyncio.futures.exceptions (count) - Number of exceptions raised by the future
76
+
* asyncio.futures.cancelled (count) - Number of futures cancelled
77
+
* asyncio.futures.created (count) - Number of futures created
78
+
* asyncio.futures.active (count) - Number of futures active
79
+
* asyncio.futures.finished (count) - Number of futures finished
80
+
* asyncio.futures.timeouts (count) - Number of futures timed out
81
+
82
+
* asyncio.coroutine.duration (ms) - Duration of the coroutine
83
+
* asyncio.coroutine.exceptions (count) - Number of exceptions raised by the coroutine
84
+
* asyncio.coroutine.created (count) - Number of coroutines created
85
+
* asyncio.coroutine.active (count) - Number of coroutines active
86
+
* asyncio.coroutine.finished (count) - Number of coroutines finished
87
+
* asyncio.coroutine.timeouts (count) - Number of coroutines timed out
88
+
* asyncio.coroutine.cancelled (count) - Number of coroutines cancelled
89
+
90
+
* asyncio.to_thread.duration (ms) - Duration of the to_thread
91
+
* asyncio.to_thread.exceptions (count) - Number of exceptions raised by the to_thread
92
+
* asyncio.to_thread.created (count) - Number of to_thread created
93
+
* asyncio.to_thread.active (count) - Number of to_thread active
94
+
* asyncio.to_thread.finished (count) - Number of to_thread finished
0 commit comments