You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@servicecomb.apache.org by GitBox <gi...@apache.org> on 2018/02/09 03:47:34 UTC

[GitHub] zhengyangyong commented on a change in pull request #550: [SCB-327] Update metrics publish data module

zhengyangyong commented on a change in pull request #550: [SCB-327] Update metrics publish data module
URL: https://github.com/apache/incubator-servicecomb-java-chassis/pull/550#discussion_r167134471
 
 

 ##########
 File path: metrics/metrics-core/src/main/java/org/apache/servicecomb/metrics/core/publish/DefaultDataSource.java
 ##########
 @@ -67,32 +66,37 @@ public DefaultDataSource(RegistryMonitor registryMonitor, String pollingSettings
         throw new ServiceCombException("bad format servicecomb.metrics.window_time", e);
       }
     }
-    String finalPollingSettings = Strings.join(",", parsePollingSettings.iterator());
-    System.getProperties().setProperty("servo.pollers", finalPollingSettings);
-    List<Long> appliedWindowTimes = getAppliedWindowTime();
-    for (int i = 0; i < appliedWindowTimes.size(); i++) {
-      this.appliedWindowTimes.put(appliedWindowTimes.get(i), i);
+
+    List<Long> sortedPollingSettings = Lists.newArrayList(parsePollingSettings);
+    System.getProperties().setProperty("servo.pollers", Strings.join(",", sortedPollingSettings.iterator()));
 
 Review comment:
   it seems servo read and parse this setting use System.getPropert;
   Could not find another way yet.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services