Skip to content

Commit

Permalink
fix(grafana): resolved status (#2630)
Browse files Browse the repository at this point in the history
  • Loading branch information
talboren authored Nov 25, 2024
1 parent 370c337 commit 24f003f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions keep/providers/grafana_provider/grafana_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ class GrafanaProvider(BaseProvider):
# https://grafana.com/docs/grafana/latest/alerting/manage-notifications/view-state-health/#alert-instance-state
STATUS_MAP = {
"ok": AlertStatus.RESOLVED,
"resolved": AlertStatus.RESOLVED,
"normal": AlertStatus.RESOLVED,
"paused": AlertStatus.SUPPRESSED,
"alerting": AlertStatus.FIRING,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "keep"
version = "0.30.0"
version = "0.30.1"
description = "Alerting. for developers, by developers."
authors = ["Keep Alerting LTD"]
packages = [{include = "keep"}]
Expand Down

0 comments on commit 24f003f

Please sign in to comment.