"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RANDOM_SAMPLER_SEED = exports.LOG_RATE_ANALYSIS_P_VALUE_THRESHOLD = exports.EMBEDDABLE_CHANGE_POINT_CHART_TYPE = exports.CASES_ATTACHMENT_CHANGE_POINT_CHART = 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. */ /** * The p-value threshold to be used for statistically significant items. */ const LOG_RATE_ANALYSIS_P_VALUE_THRESHOLD = 0.02; /** * For the technical preview of Log Rate Analysis we use a hard coded seed. * In future versions we might use a user specific seed or let the user customise it. */ exports.LOG_RATE_ANALYSIS_P_VALUE_THRESHOLD = LOG_RATE_ANALYSIS_P_VALUE_THRESHOLD; const RANDOM_SAMPLER_SEED = 3867412; exports.RANDOM_SAMPLER_SEED = RANDOM_SAMPLER_SEED; const CASES_ATTACHMENT_CHANGE_POINT_CHART = 'aiopsChangePointChart'; exports.CASES_ATTACHMENT_CHANGE_POINT_CHART = CASES_ATTACHMENT_CHANGE_POINT_CHART; const EMBEDDABLE_CHANGE_POINT_CHART_TYPE = 'aiopsChangePointChart'; exports.EMBEDDABLE_CHANGE_POINT_CHART_TYPE = EMBEDDABLE_CHANGE_POINT_CHART_TYPE;