From ea4ef47982d9fd18d56e564293351cc6e717cde4 Mon Sep 17 00:00:00 2001 From: bergquist Date: Fri, 15 Dec 2017 14:21:29 +0100 Subject: [PATCH] prometheus: change default resolution to 1/1 this should make the value of the step value more consistant for most users ref #9705 --- public/app/plugins/datasource/prometheus/query_ctrl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/datasource/prometheus/query_ctrl.ts b/public/app/plugins/datasource/prometheus/query_ctrl.ts index 34787373cdd..43c23cbefbd 100644 --- a/public/app/plugins/datasource/prometheus/query_ctrl.ts +++ b/public/app/plugins/datasource/prometheus/query_ctrl.ts @@ -23,7 +23,7 @@ class PrometheusQueryCtrl extends QueryCtrl { var target = this.target; target.expr = target.expr || ''; - target.intervalFactor = target.intervalFactor || 2; + target.intervalFactor = target.intervalFactor || 1; target.format = target.format || this.getDefaultFormat(); this.metric = '';