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

wusheng pushed a commit to branch 6.0
in repository https://gitbox.apache.org/repos/asf/incubator-skywalking.git


The following commit(s) were added to refs/heads/6.0 by this push:
     new 7785e42  Sync ServiceNameService startTime bug fix.
7785e42 is described below

commit 7785e42fe8ab36af91e463a7ee7ff350be538332
Author: terranhu <271506...@qq.com>
AuthorDate: Fri Aug 3 09:56:00 2018 +0800

    Sync ServiceNameService startTime bug fix.
---
 .../apache/skywalking/apm/collector/ui/service/ServiceNameService.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/apm-collector/apm-collector-ui/collector-ui-jetty-provider/src/main/java/org/apache/skywalking/apm/collector/ui/service/ServiceNameService.java
 
b/apm-collector/apm-collector-ui/collector-ui-jetty-provider/src/main/java/org/apache/skywalking/apm/collector/ui/service/ServiceNameService.java
index 8f2fa22..28830fa 100644
--- 
a/apm-collector/apm-collector-ui/collector-ui-jetty-provider/src/main/java/org/apache/skywalking/apm/collector/ui/service/ServiceNameService.java
+++ 
b/apm-collector/apm-collector-ui/collector-ui-jetty-provider/src/main/java/org/apache/skywalking/apm/collector/ui/service/ServiceNameService.java
@@ -77,7 +77,7 @@ public class ServiceNameService {
 
     private long startTimeMillis() {
         int minuteMetricDataTTL = configService.minuteMetricDataTTL();
-        return System.currentTimeMillis() - minuteMetricDataTTL * 60 * 60 * 
100;
+        return System.currentTimeMillis() - minuteMetricDataTTL * 60 * 1000L;
     }
 
     public ThroughputTrend getServiceThroughputTrend(int serviceId, Step step, 
long startTimeBucket,

Reply via email to