Commit ea4ef479 by bergquist

prometheus: change default resolution to 1/1

this should make the value of the step value more
consistant for most users

ref #9705
parent a8a5f818
...@@ -23,7 +23,7 @@ class PrometheusQueryCtrl extends QueryCtrl { ...@@ -23,7 +23,7 @@ class PrometheusQueryCtrl extends QueryCtrl {
var target = this.target; var target = this.target;
target.expr = target.expr || ''; target.expr = target.expr || '';
target.intervalFactor = target.intervalFactor || 2; target.intervalFactor = target.intervalFactor || 1;
target.format = target.format || this.getDefaultFormat(); target.format = target.format || this.getDefaultFormat();
this.metric = ''; this.metric = '';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment