Browse Source

alerting: reduce the length of range queries

since we introduce deboucing the length should matter less.
But going below 5m as default might be weird depending on datasource.
bergquist 7 years ago
parent
commit
76cbd7f0de
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/app/features/alerting/AlertTabCtrl.ts

+ 1 - 1
public/app/features/alerting/AlertTabCtrl.ts

@@ -218,7 +218,7 @@ export class AlertTabCtrl {
   buildDefaultCondition() {
     return {
       type: 'query',
-      query: { params: ['A', '15m', 'now'] },
+      query: { params: ['A', '5m', 'now'] },
       reducer: { type: 'avg', params: [] },
       evaluator: { type: 'gt', params: [null] },
       operator: { type: 'and' },