alerting: add count_non_null reducer

makes it possible to have a second condition requering
at least X points of data.
This commit is contained in:
bergquist
2017-10-13 09:46:18 +02:00
parent 8e4a7060ca
commit ec14fa58b5
4 changed files with 41 additions and 1 deletions

View File

@@ -51,6 +51,7 @@ var reducerTypes = [
{text: 'median()', value: 'median'},
{text: 'diff()', value: 'diff'},
{text: 'percent_diff()', value: 'percent_diff'},
{text: 'count_non_null()', value: 'count_non_null'},
];
var noDataModes = [

View File

@@ -42,7 +42,7 @@
<span class="gf-form-label query-keyword width-5" ng-if="$index===0">WHEN</span>
</div>
<div class="gf-form">
<query-part-editor class="gf-form-label query-part width-6" part="conditionModel.reducerPart" handle-event="ctrl.handleReducerPartEvent(conditionModel, $event)">
<query-part-editor class="gf-form-label query-part width-9" part="conditionModel.reducerPart" handle-event="ctrl.handleReducerPartEvent(conditionModel, $event)">
</query-part-editor>
<span class="gf-form-label query-keyword">OF</span>
</div>