Skip to content

Commit bdcc75e

Browse files
committed
Add GraalVM Native GC metrics
1 parent befcebd commit bdcc75e

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

src/main/resources/org/datadog/jmxfetch/new-gc-default-jmx-metrics.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@
193193
CollectionTime:
194194
alias: jvm.gc.minor_collection_time
195195
metric_type: counter
196+
196197
# IBM J9 gencon
197198
- include:
198199
domain: java.lang
@@ -216,6 +217,7 @@
216217
CollectionTime:
217218
alias: jvm.gc.major_collection_time
218219
metric_type: counter
220+
219221
# IBM J9 balanced
220222
- include:
221223
domain: java.lang
@@ -239,3 +241,27 @@
239241
CollectionTime:
240242
alias: jvm.gc.major_collection_time
241243
metric_type: counter
244+
245+
# GraalVM Native
246+
- include:
247+
domain: java.lang
248+
type: GarbageCollector
249+
name: young generation scavenger
250+
attribute:
251+
CollectionCount:
252+
alias: jvm.gc.minor_collection_count
253+
metric_type: counter
254+
CollectionTime:
255+
alias: jvm.gc.minor_collection_time
256+
metric_type: counter
257+
- include:
258+
domain: java.lang
259+
type: GarbageCollector
260+
name: complete scavenger
261+
attribute:
262+
CollectionCount:
263+
alias: jvm.gc.major_collection_count
264+
metric_type: counter
265+
CollectionTime:
266+
alias: jvm.gc.major_collection_time
267+
metric_type: counter

0 commit comments

Comments
 (0)