mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
(cloudwatch) support interval template variable
This commit is contained in:
parent
ff22f43002
commit
2e5a1328a8
@ -3,9 +3,10 @@ define([
|
||||
'lodash',
|
||||
'moment',
|
||||
'app/core/utils/datemath',
|
||||
'app/core/utils/kbn',
|
||||
'./annotation_query',
|
||||
],
|
||||
function (angular, _, moment, dateMath, CloudWatchAnnotationQuery) {
|
||||
function (angular, _, moment, dateMath, kbn, CloudWatchAnnotationQuery) {
|
||||
'use strict';
|
||||
|
||||
/** @ngInject */
|
||||
@ -36,7 +37,16 @@ function (angular, _, moment, dateMath, CloudWatchAnnotationQuery) {
|
||||
query.statistics = target.statistics;
|
||||
|
||||
var range = end - start;
|
||||
query.period = parseInt(target.period, 10) || (query.namespace === 'AWS/EC2' ? 300 : 60);
|
||||
if (!target.period) {
|
||||
query.period = (query.namespace === 'AWS/EC2') ? 300 : 60;
|
||||
} else if (/^\d+$/.test(target.period)) {
|
||||
query.period = parseInt(target.period, 10);
|
||||
} else {
|
||||
query.period = kbn.interval_to_seconds(templateSrv.replace(target.period, options.scopedVars));
|
||||
}
|
||||
if (query.period < 60) {
|
||||
query.period = 60;
|
||||
}
|
||||
if (range / query.period >= 1440) {
|
||||
query.period = Math.ceil(range / 1440 / 60) * 60;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user