mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 03:34:15 -06:00
Merge pull request #2898 from zachm/ztm_patch_missing_downsample
Fix missing downsampling name in kairos plugin
This commit is contained in:
commit
df4d5ea8a6
@ -284,6 +284,10 @@ function (angular, _, dateMath, kbn) {
|
||||
query.aggregators = [];
|
||||
|
||||
if (target.downsampling !== '(NONE)') {
|
||||
if (target.downsampling === undefined) {
|
||||
target.downsampling = 'avg';
|
||||
target.sampling = '10s';
|
||||
}
|
||||
query.aggregators.push({
|
||||
name: target.downsampling,
|
||||
align_sampling: true,
|
||||
|
Loading…
Reference in New Issue
Block a user