EOX GitLab Instance
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
prometheus role
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ansible-public
prometheus role
Commits
0cc98061
Commit
0cc98061
authored
2 years ago
by
Karl Grube
Browse files
Options
Downloads
Patches
Plain Diff
added more alerts
parent
c5267e2f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
files/core_alerts.yml
+33
-1
33 additions, 1 deletion
files/core_alerts.yml
with
33 additions
and
1 deletion
files/core_alerts.yml
+
33
−
1
View file @
0cc98061
...
...
@@ -139,5 +139,37 @@ groups:
annotations
:
summary
:
HTTP2 Server (instance {{ $labels.instance }} {{ $labels.domain }})
description
:
"
The
HTTP2
check
has
failed.
The
Server
is
unavailable.
\n
VALUE
=
{{
$value
}}
\n
LABELS
=
{{
$labels
}}"
-
alert
:
HostClockSkew
expr
:
(node_timex_offset_seconds > 0.05 and deriv(node_timex_offset_seconds[5m]) >= 0) or (node_timex_offset_seconds < -0.05 and deriv(node_timex_offset_seconds[5m]) <= 0)
for
:
2m
labels
:
severity
:
warning
annotations
:
summary
:
Host clock skew (instance {{ $labels.instance }})
description
:
"
Clock
skew
detected.
Clock
is
out
of
sync.
Ensure
NTP
is
configured
correctly
on
this
host.
\n
VALUE
=
{{
$value
}}
\n
LABELS
=
{{
$labels
}}"
-
alert
:
HostRaidDiskFailure
expr
:
node_md_disks{state="failed"} >
0
for
:
2m
labels
:
severity
:
warning
annotations
:
summary
:
Host RAID disk failure (instance {{ $labels.instance }})
description
:
"
At
least
one
device
in
RAID
array
on
{{
$labels.instance
}}
failed.
Array
{{
$labels.md_device
}}
needs
attention
and
possibly
a
disk
swap
\n
VALUE
=
{{
$value
}}
\n
LABELS
=
{{
$labels
}}"
-
alert
:
UnusualDiskReadLatency
expr
:
rate(node_disk_read_time_seconds_total[1m]) / rate(node_disk_reads_completed_total[1m]) >
100
for
:
30m
labels
:
severity
:
warning
annotations
:
summary
:
"
Unusual
disk
read
latency
(instance
{{
$labels.instance
}})"
description
:
"
Disk
latency
is
growing
(read
operations
>
100ms)
\n
VALUE
=
{{
$value
}}
\n
LABELS:
{{
$labels
}}"
-
alert
:
UnusualDiskWriteLatency
expr
:
rate(node_disk_write_time_seconds_total[1m]) / rate(node_disk_writes_completed_total[1m]) >
100
for
:
30m
labels
:
severity
:
warning
annotations
:
summary
:
"
Unusual
disk
read
latency
(instance
{{
$labels.instance
}})"
description
:
"
Disk
latency
is
growing
(read
operations
>
100ms)
\n
VALUE
=
{{
$value
}}
\n
LABELS:
{{
$labels
}}"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment