Sha256: 8b025b50e808a8963cce0629cae9f6c9f16b4b8e8a9621eeafe044f8a9444042
Contents?: true
Size: 1.31 KB
Versions: 28
Compression:
Stored size: 1.31 KB
Contents
=begin #Datadog API V1 Collection #Collection of all Datadog Public endpoints. The version of the OpenAPI document: 1.0 Contact: support@datadoghq.com Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator 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. =end require 'date' require 'time' module DatadogAPIClient::V1 # 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. class OnMissingDataOption include BaseEnumModel DEFAULT = "default".freeze SHOW_NO_DATA = "show_no_data".freeze SHOW_AND_NOTIFY_NO_DATA = "show_and_notify_no_data".freeze RESOLVE = "resolve".freeze end end
Version data entries
28 entries across 28 versions & 1 rubygems