|
| 1 | +groups: |
| 2 | + - id: jvm.class.loaded |
| 3 | + type: metric |
| 4 | + brief: "Number of classes loaded by the JVM." |
| 5 | + metric_name: jvm.class.loaded |
| 6 | + instrument: updowncounter |
| 7 | + unit: "{class}" |
| 8 | + stability: beta |
| 9 | + |
| 10 | + - id: jvm.gc.collections.count |
| 11 | + type: metric |
| 12 | + brief: "Total number of garbage collection that have occurred." |
| 13 | + metric_name: jvm.gc.collections.count |
| 14 | + instrument: counter |
| 15 | + unit: "{collection}" |
| 16 | + stability: beta |
| 17 | + attributes: |
| 18 | + - ref: gc.name |
| 19 | + requirement_level: required |
| 20 | + |
| 21 | + - id: jvm.gc.collections.elapsed |
| 22 | + type: metric |
| 23 | + brief: "Approximate accumulated garbage collection elapsed time in milliseconds." |
| 24 | + metric_name: jvm.gc.collections.elapsed |
| 25 | + instrument: counter |
| 26 | + unit: ms |
| 27 | + stability: beta |
| 28 | + attributes: |
| 29 | + - ref: gc.name |
| 30 | + requirement_level: required |
| 31 | + |
| 32 | + - id: jvm.memory.heap.committed |
| 33 | + type: metric |
| 34 | + brief: "Current committed heap memory usage." |
| 35 | + metric_name: jvm.memory.heap.committed |
| 36 | + instrument: gauge |
| 37 | + unit: By |
| 38 | + stability: beta |
| 39 | + |
| 40 | + - id: jvm.memory.heap.init |
| 41 | + type: metric |
| 42 | + brief: "Initial heap memory usage." |
| 43 | + metric_name: jvm.memory.heap.init |
| 44 | + instrument: gauge |
| 45 | + unit: By |
| 46 | + stability: beta |
| 47 | + |
| 48 | + - id: jvm.memory.heap.max |
| 49 | + type: metric |
| 50 | + brief: "Maximum heap memory usage." |
| 51 | + metric_name: jvm.memory.heap.max |
| 52 | + instrument: gauge |
| 53 | + unit: By |
| 54 | + stability: beta |
| 55 | + |
| 56 | + - id: jvm.memory.heap.used |
| 57 | + type: metric |
| 58 | + brief: "Current heap memory usage." |
| 59 | + metric_name: jvm.memory.heap.used |
| 60 | + instrument: gauge |
| 61 | + unit: By |
| 62 | + stability: beta |
| 63 | + |
| 64 | + - id: jvm.memory.nonheap.committed |
| 65 | + type: metric |
| 66 | + brief: "Current committed non-heap memory usage." |
| 67 | + metric_name: jvm.memory.nonheap.committed |
| 68 | + instrument: gauge |
| 69 | + unit: By |
| 70 | + stability: beta |
| 71 | + |
| 72 | + - id: jvm.memory.nonheap.init |
| 73 | + type: metric |
| 74 | + brief: "Initial non-heap memory usage." |
| 75 | + metric_name: jvm.memory.nonheap.init |
| 76 | + instrument: gauge |
| 77 | + unit: By |
| 78 | + stability: beta |
| 79 | + |
| 80 | + - id: jvm.memory.nonheap.max |
| 81 | + type: metric |
| 82 | + brief: "Maximum non-heap memory usage." |
| 83 | + metric_name: jvm.memory.nonheap.max |
| 84 | + instrument: gauge |
| 85 | + unit: By |
| 86 | + stability: beta |
| 87 | + |
| 88 | + - id: jvm.memory.nonheap.used |
| 89 | + type: metric |
| 90 | + brief: "Current non-heap memory usage." |
| 91 | + metric_name: jvm.memory.nonheap.used |
| 92 | + instrument: gauge |
| 93 | + unit: By |
| 94 | + stability: beta |
| 95 | + |
| 96 | + - id: jvm.memory.pool.committed |
| 97 | + type: metric |
| 98 | + brief: "Current memory pool committed usage." |
| 99 | + metric_name: jvm.memory.pool.committed |
| 100 | + instrument: gauge |
| 101 | + unit: By |
| 102 | + stability: beta |
| 103 | + attributes: |
| 104 | + - ref: pool.name |
| 105 | + requirement_level: required |
| 106 | + |
| 107 | + - id: jvm.memory.pool.init |
| 108 | + type: metric |
| 109 | + brief: "Initial memory pool usage." |
| 110 | + metric_name: jvm.memory.pool.init |
| 111 | + instrument: gauge |
| 112 | + unit: By |
| 113 | + stability: beta |
| 114 | + attributes: |
| 115 | + - ref: pool.name |
| 116 | + requirement_level: required |
| 117 | + |
| 118 | + - id: jvm.memory.pool.max |
| 119 | + type: metric |
| 120 | + brief: "Maximum memory pool usage." |
| 121 | + metric_name: jvm.memory.pool.max |
| 122 | + instrument: gauge |
| 123 | + unit: By |
| 124 | + stability: beta |
| 125 | + attributes: |
| 126 | + - ref: pool.name |
| 127 | + requirement_level: required |
| 128 | + |
| 129 | + - id: jvm.memory.pool.used |
| 130 | + type: metric |
| 131 | + brief: "Current memory pool used usage." |
| 132 | + metric_name: jvm.memory.pool.used |
| 133 | + instrument: gauge |
| 134 | + unit: By |
| 135 | + stability: beta |
| 136 | + attributes: |
| 137 | + - ref: pool.name |
| 138 | + requirement_level: required |
| 139 | + |
| 140 | + - id: jvm.threads.count |
| 141 | + type: metric |
| 142 | + brief: "Current number of thread count" |
| 143 | + metric_name: jvm.threads.count |
| 144 | + instrument: gauge |
| 145 | + unit: "{thread}" |
| 146 | + stability: beta |
0 commit comments