mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
alerting: increase default duration for queries
we should promote using longer queries since this should increase the quality of the alerts. only using a 5min range means that we will only have 4 datapoints in data is written every min which is not good enough for the generic alert rule
This commit is contained in:
parent
b770d52e29
commit
bc37e3caa2
@ -166,7 +166,7 @@ export class AlertTabCtrl {
|
|||||||
|
|
||||||
alert.noDataState = alert.noDataState || config.alertingNoDataOrNullValues;
|
alert.noDataState = alert.noDataState || config.alertingNoDataOrNullValues;
|
||||||
alert.executionErrorState = alert.executionErrorState || config.alertingErrorOrTimeout;
|
alert.executionErrorState = alert.executionErrorState || config.alertingErrorOrTimeout;
|
||||||
alert.frequency = alert.frequency || '60s';
|
alert.frequency = alert.frequency || '1m';
|
||||||
alert.handler = alert.handler || 1;
|
alert.handler = alert.handler || 1;
|
||||||
alert.notifications = alert.notifications || [];
|
alert.notifications = alert.notifications || [];
|
||||||
|
|
||||||
@ -217,7 +217,7 @@ export class AlertTabCtrl {
|
|||||||
buildDefaultCondition() {
|
buildDefaultCondition() {
|
||||||
return {
|
return {
|
||||||
type: 'query',
|
type: 'query',
|
||||||
query: { params: ['A', '5m', 'now'] },
|
query: { params: ['A', '15m', 'now'] },
|
||||||
reducer: { type: 'avg', params: [] },
|
reducer: { type: 'avg', params: [] },
|
||||||
evaluator: { type: 'gt', params: [null] },
|
evaluator: { type: 'gt', params: [null] },
|
||||||
operator: { type: 'and' },
|
operator: { type: 'and' },
|
||||||
|
Loading…
Reference in New Issue
Block a user