Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | 32x 32x | /* * Copyright 2021 Harness Inc. All rights reserved. * Use of this source code is governed by the PolyForm Shield 1.0.0 license * that can be found in the licenses directory at the root of this repository, also available at * https://polyformproject.org/wp-content/uploads/2020/06/PolyForm-Shield-1.0.0.txt. */ import type { SelectOption, MultiSelectOption } from '@wings-software/uicore' export const PrometheusMonitoringSourceFieldNames = { METRIC_IDENTIFIER: 'identifier', METRIC_NAME: 'metricName', PROMETHEUS_METRIC: 'prometheusMetric', SERVICE_FILTER: 'serviceFilter', RISK_CATEGORY: 'riskCategory', RECORD_COUNT: 'recordCount', QUERY: 'query', ENVIRONMENT_FILTER: 'envFilter', ADDITIONAL_FILTER: 'additionalFilter', HIGHER_BASELINE_DEVIATION: 'higherBaselineDeviation', LOWER_BASELINE_DEVIATION: 'lowerBaselineDeviation', AGGREGATOR: 'aggregator', SERVICE_INSTANCE: 'serviceInstance', GROUP_NAME: 'groupName', IS_MANUAL_QUERY: 'isManualQuery', CONTINUOUS_VERIFICATION: 'continuousVerification', HEALTH_SCORE: 'healthScore', SLI: 'sli' } export interface PrometheusSetupSource { isEdit: boolean mappedServicesAndEnvs: Map<string, MapPrometheusQueryToService> // metricName to MapPrometheusQueryToService healthSourceIdentifier: string healthSourceName: string product: SelectOption connectorRef?: string } export type MapPrometheusQueryToService = { identifier: string metricName: string prometheusMetric?: string query: string isManualQuery: boolean serviceFilter?: MultiSelectOption[] envFilter?: MultiSelectOption[] additionalFilter?: MultiSelectOption[] aggregator?: string riskCategory?: string serviceInstance?: string recordCount?: number lowerBaselineDeviation?: boolean higherBaselineDeviation?: boolean groupName?: SelectOption sli?: boolean continuousVerification?: boolean healthScore?: boolean } export type RiskProfileCatgory = 'Performance' | 'Errors' | 'Infrastructure' export type PrometheusFilter = { labelName: string; labelValue: string } export type SelectedAndMappedMetrics = { selectedMetric: string mappedMetrics: Map<string, MapPrometheusQueryToService> } export type CreatedMetricsWithSelectedIndex = { createdMetrics: string[] selectedMetricIndex: number } export const PrometheusProductNames = { APM: 'apm' } |