"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.QUERY = void 0; /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ /** * These are the fields that will be used when users enter simple_query_string * searches into the FilterBar component. */ const QUERY = { DEFAULT_BUCKET_COUNT: 25, // the maximum buckets allowed by most aggregations DEFAULT_AGGS_CAP: 10000, SIMPLE_QUERY_STRING_FIELDS: ['monitor.id', 'monitor.url', 'monitor.type', 'monitor.status', 'monitor.name', 'url.full', 'url.path', 'url.scheme', 'url.domain', 'error.type'] }; exports.QUERY = QUERY;