-
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
Dynamic opsgenie responders #2685
Merged
roidelapluie
merged 3 commits into
prometheus:main
from
markoposavec:dynamic-opsgenie-responders
Nov 4, 2021
Merged
Dynamic opsgenie responders #2685
roidelapluie
merged 3 commits into
prometheus:main
from
markoposavec:dynamic-opsgenie-responders
Nov 4, 2021
Conversation
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
Signed-off-by: Marko Posavec <maposavec@infobip.com>
Signed-off-by: Marko Posavec <maposavec@infobip.com>
markoposavec
force-pushed
the
dynamic-opsgenie-responders
branch
from
August 25, 2021 09:27
c84be58
to
e0f5e3c
Compare
roidelapluie
reviewed
Sep 8, 2021
markoposavec
force-pushed
the
dynamic-opsgenie-responders
branch
3 times, most recently
from
November 4, 2021 13:19
879ddd2
to
e0f5e3c
Compare
roidelapluie
approved these changes
Nov 4, 2021
Thanks! |
This has been sought after by my teams, awesome. Any idea when this will be released? |
multani
added a commit
to multani/alertmanager
that referenced
this pull request
Jan 6, 2023
It has been changed in prometheus#2685 but the behavior is not really documented: * `teams` supports a comma-separated list of teams, through the `name` fields only * if the list of teams is empty, no team responders are sent to Opsgenie
multani
added a commit
to multani/alertmanager
that referenced
this pull request
Jan 6, 2023
It has been changed in prometheus#2685 but the behavior is not really documented: * `teams` supports a comma-separated list of teams, through the `name` fields only * if the list of teams is empty, no team responders are sent to Opsgenie Signed-off-by: Jonathan Ballet <jon@multani.info>
simonpasquier
pushed a commit
that referenced
this pull request
Jul 2, 2024
* docs: document the Opsgenie "teams" responder type behavior It has been changed in #2685 but the behavior is not really documented: * `teams` supports a comma-separated list of teams, through the `name` fields only * if the list of teams is empty, no team responders are sent to Opsgenie --------- Signed-off-by: Jonathan Ballet <jon@multani.info>
TheMeier
pushed a commit
to TheMeier/alertmanager
that referenced
this pull request
Sep 29, 2024
…us#3205) * docs: document the Opsgenie "teams" responder type behavior It has been changed in prometheus#2685 but the behavior is not really documented: * `teams` supports a comma-separated list of teams, through the `name` fields only * if the list of teams is empty, no team responders are sent to Opsgenie --------- Signed-off-by: Jonathan Ballet <jon@multani.info>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi!
I added an option to include multiple teams in alert as requested in this issue: #1987
My current solution adds a new type option for Opsgenie responders - "teams" that are safe split by comma and then changed back into a list of teams. Another option would be to split the current "team" type by comma.
Any suggestions on how to approach this are welcome!