feat(alerting): adds 24h and 48h duration as pre defined values

ref #7007
This commit is contained in:
bergquist
2016-12-20 09:23:05 +01:00
parent 80d438ca49
commit ba96b88b66
+1 -1
View File
@@ -10,7 +10,7 @@ var alertQueryDef = new QueryPartDef({
type: 'query',
params: [
{name: "queryRefId", type: 'string', dynamicLookup: true},
{name: "from", type: "string", options: ['1s', '10s', '1m', '5m', '10m', '15m', '1h']},
{name: "from", type: "string", options: ['1s', '10s', '1m', '5m', '10m', '15m', '1h', '24h', '48h']},
{name: "to", type: "string", options: ['now']},
],
defaultParams: ['#A', '5m', 'now', 'avg']