Skip to content

Instantly share code, notes, and snippets.

@sarim
Created September 7, 2024 17:48
Show Gist options
  • Save sarim/c90c6e6f5920803ae168c0c6ab739ccd to your computer and use it in GitHub Desktop.
Save sarim/c90c6e6f5920803ae168c0c6ab739ccd to your computer and use it in GitHub Desktop.
Statping discord notifier card style embed template
{
"embeds": [{
"title": "❌ Your service {{.Service.Name}} went down! ❌",
"color": 65280,
"timestamp": "{{ .Service.LastCheck.Format "2006-01-02T15:04:05.999Z07:00" }}",
"fields": [
{
"name": "Reason",
"value": "{{ .Failure.Issue }}"
}
]
}]
}
{
"embeds": [{
"title": "✅ Your service {{.Service.Name}} is up! ✅",
"color": 65280,
"timestamp": "{{ .Service.LastCheck.Format "2006-01-02T15:04:05.999Z07:00" }}",
"fields": [
{
"name": "Latency",
"value": "{{ .Service.Latency }} ms"
}
]
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment