Datadog with YAML

YAML parameters for Datadog

NameTypeDescription
action RequiredStringThe name of the action.
type RequiredStringThe type of the action. Should be set to DATADOG.
integration RequiredStringThe ID of the integration.
alert_type RequiredStringThe type of the alert. Can be one of SUCCESS, WARNING or ERROR.
titleStringThe title of the posted event.
contentStringThe content of the posted event.
aggregation_keyStringAn arbitrary string to use for aggregation, max length of 100 characters. If you specify a key, all events using that key will be grouped together in the Event Stream.
hostStringThe Host name to associate with the event. Any tags associated with the host will also be applied to this event.
tagsString[]The list of tags to apply to the event.
regionStringThe Datadog region. Can be one of US1, US3, US5, EU1, AP1, US1_FED. If not set, the default is US1.

YAML example for Datadog

yaml
actions: - action: "Datadog Action" type: "DATADOG" trigger_time: "ON_EVERY_EXECUTION" host: "$host" title: "Something big happened!" content: "And let me tell you all about it here!" tags: - "version:1" - "application:web" region: "EU1" integration: "my_integration" alert_type: "warning" variables: - key: "host" value: "linux"

Last modified on Sep 24, 2024