Commit 76cbd7f0 by bergquist

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.
parent 48905a61
......@@ -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' },
......
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