diff --git a/CHANGELOG.md b/CHANGELOG.md index 83a23a5928..a6227e028d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ### Bug Fixes 1. [#6056](https://github.com/influxdata/chronograf/pull/6056): Fix error on typing colon +2. [#6060](https://github.com/influxdata/chronograf/pull/6060): Fix time interval in `Processor_Queue_Length` query ## v1.10.1 diff --git a/ui/src/hosts/apis/index.ts b/ui/src/hosts/apis/index.ts index de6ac17c3a..16e9b2080d 100644 --- a/ui/src/hosts/apis/index.ts +++ b/ui/src/hosts/apis/index.ts @@ -53,7 +53,7 @@ export const getCpuAndLoadForHosts = async ( SELECT mean("load1") FROM \":db:\".\":rp:\".\"system\" WHERE time > now() - 10m GROUP BY host; SELECT non_negative_derivative(mean(uptime)) AS deltaUptime FROM \":db:\".\":rp:\".\"system\" WHERE time > now() - ${telegrafSystemInterval} * 10 GROUP BY host, time(${telegrafSystemInterval}) fill(0); SELECT mean("Percent_Processor_Time") FROM \":db:\".\":rp:\".\"win_cpu\" WHERE time > now() - 10m GROUP BY host; - SELECT mean("Processor_Queue_Length") FROM \":db:\".\":rp:\".\"win_system\" WHERE time > now() - 10s GROUP BY host; + SELECT mean("Processor_Queue_Length") FROM \":db:\".\":rp:\".\"win_system\" WHERE time > now() - 10m GROUP BY host; SELECT non_negative_derivative(mean("System_Up_Time")) AS winDeltaUptime FROM \":db:\".\":rp:\".\"win_system\" WHERE time > now() - ${telegrafSystemInterval} * 10 GROUP BY host, time(${telegrafSystemInterval}) fill(0); SHOW TAG VALUES WITH KEY = "host" WHERE TIME > now() - 10m;`, tempVars