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: docs/content/diagnostics/metrics.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,9 +34,9 @@ Name | Type | Unit | Description
34
34
--- | --- | --- | ---
35
35
`db.client.connections.usage` | UpDownCounter | `{connection}` | The number of connections that are currently in the state described by the state tag.
36
36
`db.client.connections.pending_requests` | UpDownCounter | `{request}` | The number of pending requests for an open connection, cumulative for the entire pool.
37
-
`db.client.connections.create_time` | Histogram | `ms` | The time it took to create a new connection.
38
-
`db.client.connections.use_time` | Histogram | `ms` | The time between borrowing a connection and returning it to the pool.
39
-
`db.client.connections.wait_time` | Histogram | `ms` | The time it took to obtain an open connection from the pool.
37
+
`db.client.connections.create_time` | Histogram | `s` | The time it took to create a new connection.
38
+
`db.client.connections.use_time` | Histogram | `s` | The time between borrowing a connection and returning it to the pool.
39
+
`db.client.connections.wait_time` | Histogram | `s` | The time it took to obtain an open connection from the pool.
40
40
`db.client.connections.idle.max` | UpDownCounter | `{connection}` | The maximum number of idle open connections allowed; this corresponds to `MaximumPoolSize` in the connection string.
41
41
`db.client.connections.idle.min` | UpDownCounter | `{connection}` | The minimum number of idle open connections allowed; this corresponds to `MinimumPoolSize` in the connection string.
42
42
`db.client.connections.max` | UpDownCounter | `{connection}` | The maximum number of open connections allowed; this corresponds to `MaximumPoolSize` in the connection string.
Copy file name to clipboardExpand all lines: src/MySqlConnector/Utilities/Utility.cs
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -568,21 +568,21 @@ public static void GetOSDetails(out string? os, out string osDescription, out st
568
568
/// <summary>
569
569
/// Gets the elapsed time (in milliseconds) since the specified <paramref name="startingTimestamp"/> (which must be a value returned from <see cref="Stopwatch.GetTimestamp"/>.
/// Gets the elapsed time (in milliseconds) between the specified <paramref name="startingTimestamp"/> and <paramref name="endingTimestamp"/>. (These must be values returned from <see cref="Stopwatch.GetTimestamp"/>.)
579
+
/// Gets the elapsed time (in seconds) between the specified <paramref name="startingTimestamp"/> and <paramref name="endingTimestamp"/>. (These must be values returned from <see cref="Stopwatch.GetTimestamp"/>.)
0 commit comments