From aad0e204b3aab2a5423d472e1b4100bc6388e9c4 Mon Sep 17 00:00:00 2001 From: Artem Zinenko Date: Wed, 20 Sep 2017 18:02:15 +0300 Subject: [PATCH] Fixed #2014 --- CHANGELOG.md | 3 ++- ui/src/hosts/apis/index.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84178b9ea4..d78e5be993 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ### Bug Fixes 1.[#2004](https://github.com/influxdata/chronograf/pull/2004): Fix DE query templates dropdown disappearance. 1.[#2006](https://github.com/influxdata/chronograf/pull/2006): Fix no alert for duplicate db name +1.[#2015](https://github.com/influxdata/chronograf/pull/2015): Chronograf shows real status for windows hosts when metrics are saved in non-default db ### Features 1. [#1885](https://github.com/influxdata/chronograf/pull/1885): Add `fill` options to data explorer and dashboard queries 1. [#1978](https://github.com/influxdata/chronograf/pull/1978): Support editing kapacitor TICKScript @@ -64,7 +65,7 @@ ## v1.3.6.1 [2017-08-14] **Upgrade Note** This release (1.3.6.1) fixes a possibly data corruption issue with dashboard cells' graph types. If you upgraded to 1.3.6.0 and visited any dashboard, once you have then upgraded to this release (1.3.6.1) you will need to manually reset the graph type for every cell via the cell's caret --> Edit --> Display Options. If you upgraded directly to 1.3.6.1, you should not experience this issue. -### Bug Fixes +## Bug Fixes 1. [#1795](https://github.com/influxdata/chronograf/pull/1795): Fix uptime status on Windows hosts running Telegraf 1. [#1715](https://github.com/influxdata/chronograf/pull/1715): Chronograf now renders on IE11. 1. [#1870](https://github.com/influxdata/chronograf/pull/1870): Fix console error for placing prop on div diff --git a/ui/src/hosts/apis/index.js b/ui/src/hosts/apis/index.js index 1c0324dcfb..7267496e30 100644 --- a/ui/src/hosts/apis/index.js +++ b/ui/src/hosts/apis/index.js @@ -10,7 +10,7 @@ export function getCpuAndLoadForHosts(proxyLink, telegrafDB) { SELECT non_negative_derivative(mean(uptime)) AS deltaUptime FROM "system" WHERE time > now() - 10m GROUP BY host, time(1m) fill(0); SELECT mean("Percent_Processor_Time") FROM win_cpu WHERE time > now() - 10m GROUP BY host; SELECT mean("Processor_Queue_Length") FROM win_system WHERE time > now() - 10s GROUP BY host; - SELECT non_negative_derivative(mean("System_Up_Time")) AS winDeltaUptime FROM "telegraf"."autogen"."win_system" WHERE time > now() - 10m GROUP BY host, time(1m) fill(0); + SELECT non_negative_derivative(mean("System_Up_Time")) AS winDeltaUptime FROM win_system WHERE time > now() - 10m GROUP BY host, time(1m) fill(0); SHOW TAG VALUES FROM /win_system|system/ WITH KEY = "host"`, db: telegrafDB, }).then(resp => {