This plugin lets you send events and metrics to Datadog from a drone pipeline.
To send a metric every time a pipeline runs, add this step:
- name: count-pipeline
image: upgreydd/drone-datadog
settings:
api_key:
from_secret: datadog_api_key
metrics:
- type: "count"
name: "upgreydd.pipelines.count"
value: 1.0
tags: ["project:${DRONE_REPO_NAME}", "branch:${DRONE_BRANCH}"]
Sending an event is similar, both metrics and events support the host field:
- name: notify-pipeline
image: upgreydd/drone-datadog
settings:
api_key:
from_secret: datadog_api_key
events:
- title: "Building drone-datadog success"
text: "Version ${DRONE_TAG} is available on Docker Hub"
alert_type: "info"
host: ${DRONE_SYSTEM_HOSTNAME}
You can use events to notify something bad happened:
- name: notify-pipeline
image: upgreydd/drone-datadog
settings:
api_key:
from_secret: datadog_api_key
events:
- title: "Build failure"
text: "Build ${DRONE_BUILD_NUMBER} has failed"
alert_type: "error"
when:
status:
- failure
You can look at this repo .drone.yml file for a real world example.
Content type
Image
Digest
Size
5 MB
Last updated
about 5 years ago
docker pull upgreydd/drone-datadog