Datadog Service Check with YAML

YAML parameters for Datadog Service Check

NameTypeDescription
action RequiredStringThe name of the action.
type RequiredStringThe type of the action. Should be set to DATADOG_STATUS_CHECK.
integration RequiredStringThe ID of the integration.
host_nameStringThe Host name to associate with the event. Any tags associated with the host will also be applied to this event.
statusIntegerAn integer for the status of the check.
checkStringThe text for the message.
messageStringA description of why this status occurred.
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 Service Check

yaml
actions: - action: "Datadog Service Check Action" type: "DATADOG_STATUS_CHECK" trigger_time: "ON_EVERY_EXECUTION" host_name: "$host" status: 2 check: "Pipeline Execution" message: "And let me tell you all about it here!" region: "EU1" integration: "my_integration" variables: - key: "host" value: "linux"

Last modified on Sep 24, 2024