소스 검색

Graphite: annotations stop working after recent change to millisecond resolution, Fixes #1061

Torkel Ödegaard 11 년 전
부모
커밋
d4adaaaf2b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/app/services/graphite/graphiteDatasource.js

+ 1 - 1
src/app/services/graphite/graphiteDatasource.js

@@ -95,7 +95,7 @@ function (angular, _, $, config, kbn, moment) {
 
                 list.push({
                   annotation: annotation,
-                  time: datapoint[1] * 1000,
+                  time: datapoint[1],
                   title: target.target
                 });
               }