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
[receiver/oracledb] Add session, JVM, and OS resource metrics
Surfaces session non-idle activity, in-database JVM (OJVM) call-heap, and OS
CPU/swap statistics already returned by the existing system-statistics query as
seven opt-in metrics. No new SQL queries are introduced.
Copy file name to clipboardExpand all lines: receiver/oracledbreceiver/documentation.md
+68Lines changed: 68 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -327,6 +327,20 @@ Fraction of host CPU time in use, as computed by Oracle V$SYSMETRIC (% Busy/(Idl
327
327
| ---- | ----------- | ---------- | --------- |
328
328
| % | Gauge | Double | Development |
329
329
330
+
### oracledb.java.heap.usage
331
+
332
+
Size of Oracle's in-database JVM (OJVM) call heap in bytes. Sourced from v$sysstat names java call heap live size (oracledb.java.heap.state=live), java call heap total size (oracledb.java.heap.state=total), and java call heap used size (oracledb.java.heap.state=used).
| {operation} | Sum | Int | Cumulative | true | Development |
345
359
360
+
### oracledb.os.cpu.time
361
+
362
+
Cumulative OS CPU time consumed, in seconds (converted from centiseconds), as accounted by Oracle. Sourced from v$sysstat names OS System time used (oracledb.os.cpu.state=system) and OS User time used (oracledb.os.cpu.state=user).
363
+
364
+
| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic | Stability |
| oracledb.os.cpu.state | Whether the OS CPU time was consumed in system (kernel) or user mode, as accounted by Oracle. Mirrors the semconv system.cpu.state value set. | Str: ``system``, ``user`` | Recommended | - |
373
+
374
+
### oracledb.os.swaps
375
+
376
+
Number of OS swap operations, as accounted by Oracle. Sourced from v$sysstat name OS Swaps.
377
+
378
+
| Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic | Stability |
Number of times parallel execution was requested and the degree of parallelism was reduced down to 1-25% because of insufficient parallel execution servers
@@ -491,6 +527,14 @@ Number of writes directly to disk, bypassing the buffer cache
0 commit comments