You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by gi...@apache.org on 2022/04/22 18:44:11 UTC

[druid] branch master updated: Metrics for shenandoah based on this source code: https://github.com/openjdk/jdk/blob/554caf33a01ac9ca2e3e9170557e8348750f3971/src/hotspot/share/gc/shenandoah/shenandoahMonitoringSupport.cpp#L65 (#12369)

This is an automated email from the ASF dual-hosted git repository.

gian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git


The following commit(s) were added to refs/heads/master by this push:
     new 2473de2552 Metrics for shenandoah based on this source code: https://github.com/openjdk/jdk/blob/554caf33a01ac9ca2e3e9170557e8348750f3971/src/hotspot/share/gc/shenandoah/shenandoahMonitoringSupport.cpp#L65 (#12369)
2473de2552 is described below

commit 2473de2552ee277dda47835daacf23eecd1fb80c
Author: Didip Kerabat <di...@gmail.com>
AuthorDate: Fri Apr 22 11:44:05 2022 -0700

    Metrics for shenandoah based on this source code: https://github.com/openjdk/jdk/blob/554caf33a01ac9ca2e3e9170557e8348750f3971/src/hotspot/share/gc/shenandoah/shenandoahMonitoringSupport.cpp#L65 (#12369)
    
    Co-authored-by: Didip Kerabat <di...@apple.com>
---
 core/src/main/java/org/apache/druid/java/util/metrics/JvmMonitor.java | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/core/src/main/java/org/apache/druid/java/util/metrics/JvmMonitor.java b/core/src/main/java/org/apache/druid/java/util/metrics/JvmMonitor.java
index 2309139e17..c36d0f92b2 100644
--- a/core/src/main/java/org/apache/druid/java/util/metrics/JvmMonitor.java
+++ b/core/src/main/java/org/apache/druid/java/util/metrics/JvmMonitor.java
@@ -300,6 +300,8 @@ public class JvmMonitor extends FeedDefiningMonitor
           return "cms";
         case "G1 incremental collections":
           return "g1";
+        case "Shenandoah partial":
+          return "shenandoah";
 
         // Old gen
         case "MCS":
@@ -310,6 +312,8 @@ public class JvmMonitor extends FeedDefiningMonitor
           return "cms";
         case "G1 stop-the-world full collections":
           return "g1";
+        case "Shenandoah full":
+          return "shenandoah";
 
         default:
           return name;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org