Sfoglia il codice sorgente

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

Torkel Ödegaard 11 anni fa
parent
commit
d4adaaaf2b
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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
                 });
               }