Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
Icinga graphite templates
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IML Open Source
Icinga graphite templates
Compare revisions
7778345477cc97f502bb8a92a7e0e413f96c266c to 9b99bff3370c67f0c0981c73f91e2df3d42b12ef
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
iml-open-source/icinga-graphite-templates
Select target project
No results found
9b99bff3370c67f0c0981c73f91e2df3d42b12ef
Select Git revision
Branches
master
1 result
Swap
Target
iml-open-source/icinga-graphite-templates
Select target project
iml-open-source/icinga-graphite-templates
1 result
7778345477cc97f502bb8a92a7e0e413f96c266c
Select Git revision
Branches
master
1 result
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
add IML Backup server status
· c9fee767
Hahn Axel (hahn)
authored
1 year ago
c9fee767
Merge branch 'add_iml_backup' into 'master'
· 9b99bff3
Hahn Axel (hahn)
authored
1 year ago
add IML Backup server status See merge request
!9
9b99bff3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
iml_backup_server.ini
+67
-0
67 additions, 0 deletions
iml_backup_server.ini
with
67 additions
and
0 deletions
iml_backup_server.ini
0 → 100644
View file @
9b99bff3
; ======================================================================
;
; IML Backup server status
;
; show usage and idle as graph and pie
;
; ----------------------------------------------------------------------
; 2023-12-21 <axel.hahn@unibe.ch> initial version
; ======================================================================
; ----------------------------------------------------------------------
; graph
; ----------------------------------------------------------------------
[backupserver.graph]
check_command
=
"Backup-Server"
[backupserver.urlparams]
areaAlpha
=
"0.4"
; areaMode = "first"
areaMode
=
"stacked"
colorList
=
"cc0000,9999ee,999999,33cc33,6666cc"
; ^ ^ ^ ^ ^
; err notst disabl ok runn
lineWidth
=
"2"
min
=
"0"
; max = "100"
yUnitSystem
=
"binary"
[backupserver.metrics_filters]
error
=
"$service_name_template$.perfdata.error.value"
notstarted
=
"$service_name_template$.perfdata.notstarted.value"
disabled
=
"$service_name_template$.perfdata.disabled.value"
ok
=
"$service_name_template$.perfdata.ok.value"
running
=
"$service_name_template$.perfdata.running.value"
[backupserver.functions]
error
=
"alias($metric$, 'Error')"
notstarted
=
"alias($metric$, 'Not started yet')"
disabled
=
"alias($metric$, 'Disabled')"
ok
=
"alias($metric$, 'OK')"
running
=
"alias($metric$, 'Running')"
; ----------------------------------------------------------------------
; graph with running backup processes only
; ----------------------------------------------------------------------
[backupserverrunning.graph]
check_command
=
"Backup-Server"
[backupserverrunning.urlparams]
areaAlpha
=
"0.4"
; areaMode = "first"
areaMode
=
"stacked"
colorList
=
"6666cc"
lineWidth
=
"2"
min
=
"0"
yUnitSystem
=
"binary"
[backupserverrunning.metrics_filters]
running
=
"$service_name_template$.perfdata.running.value"
[backupserverrunning.functions]
running
=
"alias($metric$, 'Running')"
This diff is collapsed.
Click to expand it.