This repository has been archived by the owner on Aug 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
alert: SlurmHighCPUUsage | ||
expr: (slurm_cpu_load{%%juju_topology%%} / slurm_cpus_total{%%juju_topology%%}) * 100 > 90 | ||
for: 5m | ||
labels: | ||
severity: warning | ||
annotations: | ||
summary: CPU usage for the cluster managed by the Slurm controller {{ $labels.juju_model }}/{{ $labels.juju_unit }} reached 90% | ||
description: > | ||
The total CPU usage for all nodes in the cluster managed by the Slurm controller | ||
{{ $labels.juju_model }}/{{ $labels.juju_unit }} reached 90%. This could indicate that the cluster | ||
is reaching its maximum computing capacity. | ||
LABELS = {{ $labels }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
alert: SlurmTooManyFailedDbdMessages | ||
expr: max_over_time(slurm_dbd_agent_queue_size{%%juju_topology%%}[10s]) > 50 | ||
for: 1s | ||
labels: | ||
severity: critical | ||
annotations: | ||
summary: Slurm controller {{ $labels.juju_model }}/{{ $labels.juju_unit }} cannot reach SlurmDBD | ||
description: > | ||
The maximum amount of pending messages from the Slurm controller {{ $labels.juju_model }}/{{ $labels.juju_unit }} | ||
to SlurmDBD exceeded 5000 in the past minute. This can indicate a problem to reach SlurmDBD | ||
or its backing database. | ||
LABELS = {{ $labels }} |