Skip to content

Commit

Permalink
feat: address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulguptajss committed Nov 13, 2023
1 parent a14332f commit 5d71ff1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions container/prometheus/alert_rules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ groups:

# Volume created. Refer https://netapp.github.io/harvest/latest/plugins/#changelog-plugin for more details.
- alert: Volume Created
expr: change_log{op="create"} > 0
expr: change_log{op="create",object="volume"} > 0
labels:
severity: "info"
annotations:
Expand All @@ -87,7 +87,7 @@ groups:

# Volume modified. Refer https://netapp.github.io/harvest/latest/plugins/#changelog-plugin for more details.
- alert: Volume Modified
expr: change_log{op="update"} > 0
expr: change_log{op="update",object="volume"} > 0
labels:
severity: "info"
annotations:
Expand All @@ -96,7 +96,7 @@ groups:

# Volume deleted. Refer https://netapp.github.io/harvest/latest/plugins/#changelog-plugin for more details.
- alert: Volume Deleted
expr: change_log{op="delete"} > 0
expr: change_log{op="delete",object="volume"} > 0
labels:
severity: "warning"
annotations:
Expand Down

0 comments on commit 5d71ff1

Please sign in to comment.