Skip to content

Commit

Permalink
Add new jvm.memory.non_heap.* and jvm.fd.* JVM metrics (#127)
Browse files Browse the repository at this point in the history
Add new jvm.memory.non_heap.* and jvm.fd.* JVM metrics to the 
well known internal metrics
  • Loading branch information
JonasKunz authored Aug 3, 2023
1 parent c549366 commit 9180b59
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions model/modelprocessor/internal_metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,16 @@ func IsInternalMetricName(name string) bool {
return true
case "jvm.thread.count":
return true
case "jvm.memory.non_heap.pool.used":
return true
case "jvm.memory.non_heap.pool.committed":
return true
case "jvm.memory.non_heap.pool.max":
return true
case "jvm.fd.used":
return true
case "jvm.fd.max":
return true
case "nodejs.eventloop.delay.avg.ms":
return true
case "nodejs.handles.active":
Expand Down

0 comments on commit 9180b59

Please sign in to comment.