Skip to content
This repository has been archived by the owner on Nov 23, 2020. It is now read-only.

Latest commit

 

History

History
28 lines (21 loc) · 820 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 820 Bytes

Datadog-event

Send an event to datadog

Options

  • token (required) Your Datadog Token
  • title (required) The title of the event
  • text A description of the event
  • alert_type (optional, default: success) The type of alert we're generating (error, warning, info, or success)
  • priority (optional, default: low) The priority of the alert we're generating (low or normal)
  • tags (required) Used for filtering in Datadog

Example

build:
    after-steps:
        - datadog-event:
            token: $DATADOG_TOKEN
            title: MyApp has passed
            text: MyApp has been marked as passed
            alert_type: success
            priority: low
            tags: result:success,target:production

License

The MIT License (MIT)