/** * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. * This product includes software developed at Datadog (https://www.datadoghq.com/). * Copyright 2020-Present Datadog, Inc. */ import { UnparsedObject } from "../../datadog-api-client-common/util"; /** * The APM metric statistic to query. */ export declare type ApmMetricsStat = typeof ERROR_RATE | typeof ERRORS | typeof ERRORS_PER_SECOND | typeof HITS | typeof HITS_PER_SECOND | typeof APDEX | typeof LATENCY_AVG | typeof LATENCY_MAX | typeof LATENCY_P50 | typeof LATENCY_P75 | typeof LATENCY_P90 | typeof LATENCY_P95 | typeof LATENCY_P99 | typeof LATENCY_P999 | typeof LATENCY_DISTRIBUTION | typeof TOTAL_TIME | UnparsedObject; export declare const ERROR_RATE = "error_rate"; export declare const ERRORS = "errors"; export declare const ERRORS_PER_SECOND = "errors_per_second"; export declare const HITS = "hits"; export declare const HITS_PER_SECOND = "hits_per_second"; export declare const APDEX = "apdex"; export declare const LATENCY_AVG = "latency_avg"; export declare const LATENCY_MAX = "latency_max"; export declare const LATENCY_P50 = "latency_p50"; export declare const LATENCY_P75 = "latency_p75"; export declare const LATENCY_P90 = "latency_p90"; export declare const LATENCY_P95 = "latency_p95"; export declare const LATENCY_P99 = "latency_p99"; export declare const LATENCY_P999 = "latency_p999"; export declare const LATENCY_DISTRIBUTION = "latency_distribution"; export declare const TOTAL_TIME = "total_time";