This is an automated email from the ASF dual-hosted git repository.
zuston pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git
The following commit(s) were added to refs/heads/master by this push:
new 03864bb85 [#1361] feat(netty): add netty metrics into reporter (#1362)
03864bb85 is described below
commit 03864bb8598050de6a2da6b157f4d1b059c7e059
Author: Junfan Zhang <[email protected]>
AuthorDate: Fri Dec 8 18:05:50 2023 +0800
[#1361] feat(netty): add netty metrics into reporter (#1362)
### What changes were proposed in this pull request?
add netty metrics into reporter
### Why are the changes needed?
Fix: #1361
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Needn't
---
server/src/main/java/org/apache/uniffle/server/ShuffleServer.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/server/src/main/java/org/apache/uniffle/server/ShuffleServer.java
b/server/src/main/java/org/apache/uniffle/server/ShuffleServer.java
index eecfc0e06..573af23ea 100644
--- a/server/src/main/java/org/apache/uniffle/server/ShuffleServer.java
+++ b/server/src/main/java/org/apache/uniffle/server/ShuffleServer.java
@@ -311,6 +311,7 @@ public class ShuffleServer {
if (metricReporter != null) {
metricReporter.addCollectorRegistry(ShuffleServerMetrics.getCollectorRegistry());
metricReporter.addCollectorRegistry(grpcMetrics.getCollectorRegistry());
+ metricReporter.addCollectorRegistry(nettyMetrics.getCollectorRegistry());
metricReporter.addCollectorRegistry(JvmMetrics.getCollectorRegistry());
metricReporter.start();
}