Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
icinga-checks
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-checks
Commits
ba77c317
Commit
ba77c317
authored
2 years ago
by
Hahn Axel (hahn)
Browse files
Options
Downloads
Patches
Plain Diff
deltaunit can be set as parameter
parent
1128af75
No related branches found
No related tags found
1 merge request
!97
6010 check pqsql
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
check_psqlserver
+11
-6
11 additions, 6 deletions
check_psqlserver
with
11 additions
and
6 deletions
check_psqlserver
+
11
−
6
View file @
ba77c317
...
...
@@ -16,12 +16,13 @@
# 2023-06-07 v0.2 <axel.hahn@unibe.ch>
# 2023-06-08 v0.3 <axel.hahn@unibe.ch> show unknown if database connection fails
# 2023-06-08 v0.4 <axel.hahn@unibe.ch> get summary for cronflicts and problems
# 2023-06-09 v0.5 <axel.hahn@unibe.ch> deltaunit can be set as parameter
# ======================================================================
.
$(
dirname
$0
)
/inc_pluginfunctions
self_APPNAME
=
$(
basename
$0
|
tr
[
:lower:]
[
:upper:]
)
self_APPVERSION
=
0.
2
self_APPVERSION
=
0.
5
# --- other vars...
cfgfile
=
/etc/icingaclient/.psql.conf
...
...
@@ -142,13 +143,15 @@ EOH
# render incremental counters from integer results of a given sql query
# global string out output of check
# param string database query
# param string time unit; one of sec|min; default: sec
function
renderCounters
(){
local
_query
;
_query
=
"
$1
"
local
_sDeltaUnit
;
_sDeltaUnit
=
${
2
:-
sec
}
local
_out
;
_out
=
$(
psql
-c
"
${
_query
}
"
2>&1
)
||
_queryFailed
local
_iCounter
;
typeset
-i
_iCounter
=
0
local
_header
;
_header
=
$(
echo
"
${
_out
}
"
|
head
-1
|
tr
-d
' '
)
local
_data
;
_data
=
$(
echo
"
${
_out
}
"
|
head
-3
|
tail
-1
|
tr
-d
' '
)
local
_sDeltaUnit
;
_sDeltaUnit
=
sec
local
_iSpeed
;
typeset
-i
_iSpeed
=
0
local
_sStoreid
;
_sStoreid
=
$(
md5sum
<<<
"
${
_query
}
"
|
awk
'{ print $1 }'
)
local
_iValue
;
typeset
-i
_iValue
...
...
@@ -238,6 +241,7 @@ case "${sMode}" in
;;
"conflicts"
)
deltaunit
=
min
descr
=
"Detected conflicts (from pg_stat_database_conflicts)"
renderCounters
"select
\
sum(confl_tablespace) as confl_tablespace,
\
...
...
@@ -245,14 +249,14 @@ case "${sMode}" in
sum(confl_snapshot) as confl_snapshot,
\
sum(confl_bufferpin) as confl_bufferpin,
\
sum(confl_deadlock) as confl_deadlock
\
from pg_stat_database_conflicts "
from pg_stat_database_conflicts "
"
${
deltaunit
}
"
# sum of 7th column (with delta per sec)
typeset
-i
iTotal
;
iTotal
=
$(
echo
"
$out
"
|
awk
'{ sum+=$7} END { print sum;}'
)
if
[
$iTotal
-gt
0
]
;
then
ph.setStatus
"warning"
fi
descr+
=
" - currently
$iTotal
per
sec
"
descr+
=
" - currently
$iTotal
per
${
deltaunit
}
"
;;
"dbrows"
)
...
...
@@ -275,6 +279,7 @@ case "${sMode}" in
;;
"problems"
)
deltaunit
=
min
descr
=
"Problems and troublemakers (from pg_stat_database)"
renderCounters
"select
\
sum(conflicts) as conflicts,
\
...
...
@@ -282,14 +287,14 @@ case "${sMode}" in
sum(checksum_failures) as checksumfailures,
\
sum(temp_files) as temp_files,
\
sum(temp_bytes) as temp_bytes
\
from pg_stat_database "
from pg_stat_database
"
"
${
deltaunit
}
"
# sum of 7th column (with delta per sec)
typeset
-i
iTotal
;
iTotal
=
$(
echo
"
$out
"
|
awk
'{ sum+=$7} END { print sum;}'
)
if
[
$iTotal
-gt
0
]
;
then
ph.setStatus
"warning"
fi
descr+
=
" - currently
$iTotal
per
sec
"
descr+
=
" - currently
$iTotal
per
${
deltaunit
}
"
;;
"replication"
)
...
...
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