"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LONG_INTERVALS = exports.INTERVALS = 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. */ const INTERVALS = [{ name: '15m', ms: 900000 }, { name: '30m', ms: 1800000 }, { name: '1h', ms: 3600000 }, { name: '3h', ms: 10800000 }]; exports.INTERVALS = INTERVALS; const LONG_INTERVALS = [{ name: '3h', ms: 10800000 }, { name: '6h', ms: 21600000 }, { name: '12h', ms: 43200000 }, { name: '1d', ms: 86400000 }, { name: '2d', ms: 172800000 }, { name: '3d', ms: 259200000 }, { name: '4d', ms: 345600000 }, { name: '5d', ms: 432000000 }, { name: '6d', ms: 518400000 }, { name: '7d', ms: 604800000 }]; exports.LONG_INTERVALS = LONG_INTERVALS;