mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 15:44:05 -08:00
Merge pull request #886 from prometheus/fabxc/fixui
web/js: fix display error for vectors in console
This commit is contained in:
commit
b0efbf8c98
File diff suppressed because one or more lines are too long
|
@ -579,7 +579,7 @@ Prometheus.Graph.prototype.handleConsoleResponse = function(data, textStatus) {
|
|||
for (var i = 0; i < data.result.length; i++) {
|
||||
var s = data.result[i];
|
||||
var tsName = self.metricToTsName(s.metric);
|
||||
tBody.append("<tr><td>" + escapeHTML(tsName) + "</td><td>" + s[1] + "</td></tr>");
|
||||
tBody.append("<tr><td>" + escapeHTML(tsName) + "</td><td>" + s.value[1] + "</td></tr>");
|
||||
}
|
||||
break;
|
||||
case "matrix":
|
||||
|
|
Loading…
Reference in a new issue