Opsgenie
The Opsgenie trigger creates structured alerts in Atlassian Opsgenie when new container versions are detected, integrating into on-call rotations and incident workflows.
⚙️ Configuration Variables
WUD_TRIGGER_OPSGENIE_{trigger_name}_APIKEY
Requiredstring
Opsgenie integration API key (GenieKey)
WUD_TRIGGER_OPSGENIE_{trigger_name}_DISABLETITLE
Optionalbooleandefault: false
Whether to omit the dynamic notification title
WUD_TRIGGER_OPSGENIE_{trigger_name}_PRIORITY
Optionalenumdefault: P5
Alert priority level (P5 is Informational, P1 is Critical)
WUD_TRIGGER_OPSGENIE_{trigger_name}_REGION
Optionalenumdefault: us
Opsgenie data residency region (us or eu)
WUD_TRIGGER_OPSGENIE_{trigger_name}_TAGS
Optionalstringdefault: wud,docker
Comma-separated list of tags to associate with created alerts
info
This trigger also supports all common trigger configuration options (such as thresholds, scheduling, and batching).
🚀 Examples
Basic Opsgenie Alert
- Docker Compose
- Docker
services:
whatsupdocker:
image: getwud/wud
environment:
- WUD_TRIGGER_OPSGENIE_PROD_APIKEY=eb48f654-xxxx-xxxx-xxxx-xxxxxxx
- WUD_TRIGGER_OPSGENIE_PROD_REGION=eu
- WUD_TRIGGER_OPSGENIE_PROD_PRIORITY=P4
docker run \
-e WUD_TRIGGER_OPSGENIE_PROD_APIKEY="eb48f654-xxxx-xxxx-xxxx-xxxxxxx" \
-e WUD_TRIGGER_OPSGENIE_PROD_REGION="eu" \
-e WUD_TRIGGER_OPSGENIE_PROD_PRIORITY="P4" \
getwud/wud