-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add googlechat notifier #3554
base: main
Are you sure you want to change the base?
Conversation
ce01e14
to
808d8cd
Compare
Nice! Thanks @tamcore - Do you have any stats on downloads/usage over the past 6 months? I can see that it has a decent number of stars but would love to know more about the usage itself. |
Not really. But according to https://github.com/mr-karan/calert/pkgs/container/calert/64363789?tag=v2.0.6 the latest release had 39353 downloads during the 9 months since release. But there's definitely some interest, and at our company we use it as well (but only one of those 39353 pulls is from us - we use an image cache :D) |
06b63fb
to
dee0b99
Compare
@simonpasquier / @gotjosh any chance to get this included? :) |
I would like to see this included. Running external service for simple notifications is a pain in the back. This change doesn't look so dramatic, it should be merged relatively easily... |
dee0b99
to
ab737b9
Compare
It shows the error: |
Hey folks 👋 |
It looks like something similar to this MSTeams code needs to be added in config/config.go: https://github.com/prometheus/alertmanager/blob/main/config/config.go#L535-L542 |
9bc26dd
to
3a06e45
Compare
Signed-off-by: Philipp Born <[email protected]>
3a06e45
to
7f46191
Compare
This will add a Google Chat notifier and allow existing setups to replace the slightly aged calert with a native integration.
Essentially all that's required is to send a POST with
{"text": "our alert"}
, so there isn't too much breakage potential :D#2940 2940