| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- import angular from 'angular';
- import _ from 'lodash';
- import * as queryDef from './query_def';
- export function elasticMetricAgg() {
- return {
- templateUrl: 'public/app/plugins/datasource/elasticsearch/partials/metric_agg.html',
- controller: 'ElasticMetricAggCtrl',
- restrict: 'E',
- scope: {
- target: '=',
- index: '=',
- onChange: '&',
- getFields: '&',
- esVersion: '=',
- },
- };
- }
- export class ElasticMetricAggCtrl {
- constructor($scope, uiSegmentSrv, $q, $rootScope) {
- const metricAggs = $scope.target.metrics;
- $scope.metricAggTypes = queryDef.getMetricAggTypes($scope.esVersion);
- $scope.extendedStats = queryDef.extendedStats;
- $scope.pipelineAggOptions = [];
- $scope.modelSettingsValues = {};
- $scope.init = () => {
- $scope.agg = metricAggs[$scope.index];
- $scope.validateModel();
- $scope.updatePipelineAggOptions();
- };
- $scope.updatePipelineAggOptions = () => {
- $scope.pipelineAggOptions = queryDef.getPipelineAggOptions($scope.target);
- };
- $rootScope.onAppEvent(
- 'elastic-query-updated',
- () => {
- $scope.index = _.indexOf(metricAggs, $scope.agg);
- $scope.updatePipelineAggOptions();
- $scope.validateModel();
- },
- $scope
- );
- $scope.validateModel = () => {
- $scope.isFirst = $scope.index === 0;
- $scope.isSingle = metricAggs.length === 1;
- $scope.settingsLinkText = '';
- $scope.aggDef = _.find($scope.metricAggTypes, { value: $scope.agg.type });
- if (queryDef.isPipelineAgg($scope.agg.type)) {
- $scope.agg.pipelineAgg = $scope.agg.pipelineAgg || 'select metric';
- $scope.agg.field = $scope.agg.pipelineAgg;
- const pipelineOptions = queryDef.getPipelineOptions($scope.agg);
- if (pipelineOptions.length > 0) {
- _.each(pipelineOptions, opt => {
- $scope.agg.settings[opt.text] = $scope.agg.settings[opt.text] || opt.default;
- });
- $scope.settingsLinkText = 'Options';
- }
- } else if (!$scope.agg.field) {
- $scope.agg.field = 'select field';
- }
- switch ($scope.agg.type) {
- case 'cardinality': {
- const precisionThreshold = $scope.agg.settings.precision_threshold || '';
- $scope.settingsLinkText = 'Precision threshold: ' + precisionThreshold;
- break;
- }
- case 'percentiles': {
- $scope.agg.settings.percents = $scope.agg.settings.percents || [25, 50, 75, 95, 99];
- $scope.settingsLinkText = 'Values: ' + $scope.agg.settings.percents.join(',');
- break;
- }
- case 'extended_stats': {
- if (_.keys($scope.agg.meta).length === 0) {
- $scope.agg.meta.std_deviation_bounds_lower = true;
- $scope.agg.meta.std_deviation_bounds_upper = true;
- }
- const stats = _.reduce(
- $scope.agg.meta,
- (memo, val, key) => {
- if (val) {
- const def = _.find($scope.extendedStats, { value: key });
- memo.push(def.text);
- }
- return memo;
- },
- []
- );
- $scope.settingsLinkText = 'Stats: ' + stats.join(', ');
- break;
- }
- case 'moving_avg': {
- $scope.movingAvgModelTypes = queryDef.movingAvgModelOptions;
- $scope.modelSettings = queryDef.getMovingAvgSettings($scope.agg.settings.model, true);
- $scope.updateMovingAvgModelSettings();
- break;
- }
- case 'raw_document': {
- $scope.agg.settings.size = $scope.agg.settings.size || 500;
- $scope.settingsLinkText = 'Size: ' + $scope.agg.settings.size;
- $scope.target.metrics.splice(0, $scope.target.metrics.length, $scope.agg);
- $scope.target.bucketAggs = [];
- break;
- }
- }
- if ($scope.aggDef.supportsInlineScript) {
- // I know this stores the inline script twice
- // but having it like this simplifes the query_builder
- const inlineScript = $scope.agg.inlineScript;
- if (inlineScript) {
- $scope.agg.settings.script = { inline: inlineScript };
- } else {
- delete $scope.agg.settings.script;
- }
- if ($scope.settingsLinkText === '') {
- $scope.settingsLinkText = 'Options';
- }
- }
- };
- $scope.toggleOptions = () => {
- $scope.showOptions = !$scope.showOptions;
- $scope.updatePipelineAggOptions();
- };
- $scope.onChangeInternal = () => {
- $scope.onChange();
- };
- $scope.updateMovingAvgModelSettings = () => {
- const modelSettingsKeys = [];
- const modelSettings = queryDef.getMovingAvgSettings($scope.agg.settings.model, false);
- for (let i = 0; i < modelSettings.length; i++) {
- modelSettingsKeys.push(modelSettings[i].value);
- }
- for (const key in $scope.agg.settings.settings) {
- if ($scope.agg.settings.settings[key] === null || modelSettingsKeys.indexOf(key) === -1) {
- delete $scope.agg.settings.settings[key];
- }
- }
- };
- $scope.onChangeClearInternal = () => {
- delete $scope.agg.settings.minimize;
- $scope.onChange();
- };
- $scope.onTypeChange = () => {
- $scope.agg.settings = {};
- $scope.agg.meta = {};
- $scope.showOptions = false;
- $scope.updatePipelineAggOptions();
- $scope.onChange();
- };
- $scope.getFieldsInternal = () => {
- if ($scope.agg.type === 'cardinality') {
- return $scope.getFields();
- }
- return $scope.getFields({ $fieldType: 'number' });
- };
- $scope.addMetricAgg = () => {
- const addIndex = metricAggs.length;
- const id = _.reduce(
- $scope.target.bucketAggs.concat($scope.target.metrics),
- (max, val) => {
- return parseInt(val.id, 10) > max ? parseInt(val.id, 10) : max;
- },
- 0
- );
- metricAggs.splice(addIndex, 0, { type: 'count', field: 'select field', id: (id + 1).toString() });
- $scope.onChange();
- };
- $scope.removeMetricAgg = () => {
- metricAggs.splice($scope.index, 1);
- $scope.onChange();
- };
- $scope.toggleShowMetric = () => {
- $scope.agg.hide = !$scope.agg.hide;
- if (!$scope.agg.hide) {
- delete $scope.agg.hide;
- }
- $scope.onChange();
- };
- $scope.init();
- }
- }
- const module = angular.module('grafana.directives');
- module.directive('elasticMetricAgg', elasticMetricAgg);
- module.controller('ElasticMetricAggCtrl', ElasticMetricAggCtrl);
|