Skip to content

Commit

Permalink
Add IBM J9 gc metrics (#534)
Browse files Browse the repository at this point in the history
  • Loading branch information
amarziali authored Aug 7, 2024
1 parent c4f970a commit 9d28e88
Showing 1 changed file with 46 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,3 +193,49 @@
CollectionTime:
alias: jvm.gc.minor_collection_time
metric_type: counter
# IBM J9 gencon
- include:
domain: java.lang
type: GarbageCollector
name: scavenge
attribute:
CollectionCount:
alias: jvm.gc.minor_collection_count
metric_type: counter
CollectionTime:
alias: jvm.gc.minor_collection_time
metric_type: counter
- include:
domain: java.lang
type: GarbageCollector
name: global
attribute:
CollectionCount:
alias: jvm.gc.major_collection_count
metric_type: counter
CollectionTime:
alias: jvm.gc.major_collection_time
metric_type: counter
# IBM J9 balanced
- include:
domain: java.lang
type: GarbageCollector
name: partial gc
attribute:
CollectionCount:
alias: jvm.gc.minor_collection_count
metric_type: counter
CollectionTime:
alias: jvm.gc.minor_collection_time
metric_type: counter
- include:
domain: java.lang
type: GarbageCollector
name: global garbage collect
attribute:
CollectionCount:
alias: jvm.gc.major_collection_count
metric_type: counter
CollectionTime:
alias: jvm.gc.major_collection_time
metric_type: counter

0 comments on commit 9d28e88

Please sign in to comment.