Created
September 7, 2024 17:48
-
-
Save sarim/c90c6e6f5920803ae168c0c6ab739ccd to your computer and use it in GitHub Desktop.
Statping discord notifier card style embed template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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 }}" | |
} | |
] | |
}] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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