remove geo_bounds agg from visualizations (#13536)

* remove geo_bounds agg from visualizations

* remove from horizontal bar chart
This commit is contained in:
Thomas Neirynck 2017-08-21 13:28:43 -04:00
parent 5e73c36c46
commit e6ce9705ad
9 changed files with 9 additions and 9 deletions

View file

@ -124,7 +124,7 @@ export default function PointSeriesVisType(Private) {
group: 'metrics',
name: 'metric',
title: 'Y-Axis',
aggFilter: ['!geo_centroid'],
aggFilter: ['!geo_centroid','!geo_bounds'],
min: 1,
defaults: [
{ schema: 'metric', type: 'count' }

View file

@ -78,7 +78,7 @@ export default function GaugeVisType(Private) {
min: 1,
aggFilter: [
'!std_dev', '!geo_centroid', '!percentiles', '!percentile_ranks',
'!derivative', '!serial_diff', '!moving_avg', '!cumulative_sum'],
'!derivative', '!serial_diff', '!moving_avg', '!cumulative_sum','!geo_bounds'],
defaults: [
{ schema: 'metric', type: 'count' }
]

View file

@ -72,7 +72,7 @@ export default function GoalVisType(Private) {
min: 1,
aggFilter: [
'!std_dev', '!geo_centroid', '!percentiles', '!percentile_ranks',
'!derivative', '!serial_diff', '!moving_avg', '!cumulative_sum'],
'!derivative', '!serial_diff', '!moving_avg', '!cumulative_sum','!geo_bounds'],
defaults: [
{ schema: 'metric', type: 'count' }
]

View file

@ -126,7 +126,7 @@ export default function PointSeriesVisType(Private) {
name: 'metric',
title: 'Y-Axis',
min: 1,
aggFilter: ['!geo_centroid'],
aggFilter: ['!geo_centroid','!geo_bounds'],
defaults: [
{ schema: 'metric', type: 'count' }
]

View file

@ -128,7 +128,7 @@ export default function PointSeriesVisType(Private) {
name: 'metric',
title: 'Y-Axis',
min: 1,
aggFilter: ['!geo_centroid'],
aggFilter: ['!geo_centroid', '!geo_bounds'],
defaults: [
{ schema: 'metric', type: 'count' }
]

View file

@ -126,7 +126,7 @@ export default function PointSeriesVisType(Private) {
name: 'metric',
title: 'Y-Axis',
min: 1,
aggFilter: ['!geo_centroid'],
aggFilter: ['!geo_centroid','!geo_bounds'],
defaults: [
{ schema: 'metric', type: 'count' }
]

View file

@ -69,7 +69,7 @@ export default function MetricVisType(Private) {
name: 'metric',
title: 'Metric',
min: 1,
aggFilter: ['!derivative', '!geo_centroid'],
aggFilter: ['!derivative', '!geo_centroid','!geo_bounds'],
defaults: [
{ schema: 'metric', type: 'count' }
]

View file

@ -58,7 +58,7 @@ function TableVisTypeProvider(Private) {
group: 'metrics',
name: 'metric',
title: 'Metric',
aggFilter: '!geo_centroid',
aggFilter: ['!geo_centroid','!geo_bounds'],
min: 1,
defaults: [
{ type: 'count', schema: 'metric' }

View file

@ -41,7 +41,7 @@ VisTypesRegistryProvider.register(function TagCloudProvider(Private) {
title: 'Tag Size',
min: 1,
max: 1,
aggFilter: ['!std_dev', '!percentiles', '!percentile_ranks', '!derivative'],
aggFilter: ['!std_dev', '!percentiles', '!percentile_ranks', '!derivative','!geo_bounds','!geo_centroid'],
defaults: [
{ schema: 'metric', type: 'count' }
]