UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

19 lines (18 loc) 1.25 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"; /** * Controls how groups or monitors are treated if an evaluation does not return any data points. * The default option results in different behavior depending on the monitor query type. * For monitors using Count queries, an empty monitor evaluation is treated as 0 and is compared to the threshold conditions. * For monitors using any query type other than Count, for example Gauge, Measure, or Rate, the monitor shows the last known status. * This option is only available for APM Trace Analytics, Audit Trail, CI, Error Tracking, Event, Logs, and RUM monitors. */ export declare type OnMissingDataOption = typeof DEFAULT | typeof SHOW_NO_DATA | typeof SHOW_AND_NOTIFY_NO_DATA | typeof RESOLVE | UnparsedObject; export declare const DEFAULT = "default"; export declare const SHOW_NO_DATA = "show_no_data"; export declare const SHOW_AND_NOTIFY_NO_DATA = "show_and_notify_no_data"; export declare const RESOLVE = "resolve";