Sha256: 0aa0db98708a4b2a7ecf84320b9e8b0ce897195bfc3d99bc80ef58be8d99f142
Contents?: true
Size: 1.3 KB
Versions: 6
Compression:
Stored size: 1.3 KB
Contents
# Validate an existing monitor returns "OK" response require "datadog_api_client" api_instance = DatadogAPIClient::V1::MonitorsAPI.new # there is a valid "monitor" in the system MONITOR_ID = ENV["MONITOR_ID"] body = DatadogAPIClient::V1::Monitor.new({ name: "Example-Validate_an_existing_monitor_returns_OK_response", type: DatadogAPIClient::V1::MonitorType::LOG_ALERT, query: 'logs("service:foo AND type:error").index("main").rollup("count").by("source").last("5m") > 2', message: "some message Notify: @hipchat-channel", tags: [ "test:examplevalidateanexistingmonitorreturnsokresponse", "env:ci", ], priority: 3, options: DatadogAPIClient::V1::MonitorOptions.new({ enable_logs_sample: true, escalation_message: "the situation has escalated", evaluation_delay: 700, groupby_simple_monitor: true, include_tags: true, locked: false, new_host_delay: 600, no_data_timeframe: nil, notify_audit: false, notify_no_data: false, on_missing_data: DatadogAPIClient::V1::OnMissingDataOption::SHOW_AND_NOTIFY_NO_DATA, renotify_interval: 60, require_full_window: true, timeout_h: 24, thresholds: DatadogAPIClient::V1::MonitorThresholds.new({ critical: 2, warning: 1, }), }), }) p api_instance.validate_existing_monitor(MONITOR_ID.to_i, body)
Version data entries
6 entries across 6 versions & 1 rubygems