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.
This commit is contained in:
bergquist
2018-11-19 09:10:19 +01:00
parent 48905a613d
commit 76cbd7f0de

View File

@@ -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' },