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

wusheng pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/skywalking-data-collect-protocol.git


The following commit(s) were added to refs/heads/master by this push:
     new e626ee0  Remove Terminated State and New State in JVMM (#7230) (#53)
e626ee0 is described below

commit e626ee04850703c220f64b642d2893fa65572943
Author: Switch <[email protected]>
AuthorDate: Wed Jul 7 08:32:43 2021 +0800

    Remove Terminated State and New State in JVMM (#7230) (#53)
---
 language-agent/JVMMetric.proto | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/language-agent/JVMMetric.proto b/language-agent/JVMMetric.proto
index 0ea9248..e35b71d 100644
--- a/language-agent/JVMMetric.proto
+++ b/language-agent/JVMMetric.proto
@@ -90,12 +90,10 @@ message Thread {
     int64 liveCount = 1;
     int64 daemonCount = 2;
     int64 peakCount = 3;
-    int64 newStateThreadCount = 4;
-    int64 runnableStateThreadCount = 5;
-    int64 blockedStateThreadCount = 6;
-    int64 waitingStateThreadCount = 7;
-    int64 timedWaitingStateThreadCount = 8;
-    int64 terminatedStateThreadCount = 9;
+    int64 runnableStateThreadCount = 4;
+    int64 blockedStateThreadCount = 5;
+    int64 waitingStateThreadCount = 6;
+    int64 timedWaitingStateThreadCount = 7;
 }
 
 // See: 
https://docs.oracle.com/javase/8/docs/api/java/lang/management/ClassLoadingMXBean.html

Reply via email to