UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

22 lines (21 loc) 1.19 kB
/** * 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"; /** * APM resource stat name. */ export declare type FormulaAndFunctionApmResourceStatName = typeof ERRORS | typeof ERROR_RATE | typeof HITS | typeof LATENCY_AVG | typeof LATENCY_DISTRIBUTION | typeof LATENCY_MAX | typeof LATENCY_P50 | typeof LATENCY_P75 | typeof LATENCY_P90 | typeof LATENCY_P95 | typeof LATENCY_P99 | UnparsedObject; export declare const ERRORS = "errors"; export declare const ERROR_RATE = "error_rate"; export declare const HITS = "hits"; export declare const LATENCY_AVG = "latency_avg"; export declare const LATENCY_DISTRIBUTION = "latency_distribution"; 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";