Keep total counter outside out loop.

This was causing only the last expression to be graphed.
This commit is contained in:
Brian Brazil 2015-01-26 10:51:38 +00:00
parent 01f2bc4ee7
commit 2b07cd3875
1 changed files with 2 additions and 2 deletions

View File

@ -395,10 +395,10 @@ PromConsole.Graph.prototype._render = function(data) {
}
// Get the data into the right format.
var seriesLen = 0;
for (var e = 0; e < data.length; e++) {
var len = 0;
for (var i = 0; i < data[e].Value.length; i++) {
series[len++] = {
series[seriesLen++] = {
data: data[e].Value[i].Values.map(function(s) {return {x: s.Timestamp, y: parseFloat(s.Value)} }),
color: palette.color(),
name: nameFunc(data[e].Value[i].Metric),