diff --git a/web/static/css/graph.css b/web/static/css/graph.css index 105ad694b..fc91ffac8 100644 --- a/web/static/css/graph.css +++ b/web/static/css/graph.css @@ -8,6 +8,7 @@ a:active { color: black; } .eval_stats { float: right; + font-size: 11px; } .graph_wrapper { diff --git a/web/static/js/graph.js b/web/static/js/graph.js index 243674566..246e22ef5 100644 --- a/web/static/js/graph.js +++ b/web/static/js/graph.js @@ -321,7 +321,7 @@ Prometheus.Graph.prototype.submitQuery = function() { }, complete: function() { var duration = new Date().getTime() - startTime; - self.evalStats.html("Load time: " + duration + "ms, resolution: " + resolution + "s"); + self.evalStats.html("Load time: " + duration + "ms
Resolution: " + resolution + "s"); self.spinner.hide(); } });