scripts / monitoring.d / common-tests /
Newer Older
100 lines | 3.371kb
ajout de la supervision
Sébastien MARQUE authored on 2017-02-22
1
# vim: ft=sh
2

            
3
function _systemctl () {
4
    test -n "$1" || return
5
    eval $(systemctl show $1 | egrep '^(ExecMainStatus|Result|ActiveState|SubState|Type)=')
6
    if test -n "$Type"; then
7
           test $ExecMainStatus -eq 0 \
8
        && test $Result = 'success' \
9
        && test $ActiveState = 'active' \
10
        && [[ ( $Type =~ ^(simple|forking|notify)$ && $SubState = 'running' ) || ( $Type = 'oneshot' && $SubState = 'exited' ) ]] \
11
        || echo "état du service anormal"
12
    else
13
        echo "service $1 inexistant"
14
    fi
15
}
16

            
17
function sys_state () {
18
    local failed_units=
19
    eval $(systemctl show | egrep '^(SystemState|NFailedUnits)=')
20
    if test $SystemState != "running" -o $NFailedUnits -ne 0; then
quelques corrections sur la ...
Sébastien MARQUE authored on 2017-02-22
21
        echo "$SystemState mode ($NFailedUnits units failed):"
22
        echo "$(systemctl --failed --no-legend | awk '
ajout de la supervision
Sébastien MARQUE authored on 2017-02-22
23
            {
24
                split($1, units, ".")
25
                failed[units[2]][units[1]]=1
26
                numfailed[units[2]]++
27
            }
28
            END {
29
                for (ut in failed) { 
quelques corrections sur la ...
Sébastien MARQUE authored on 2017-02-22
30
                    print ut
ajout de la supervision
Sébastien MARQUE authored on 2017-02-22
31
                    for (un in failed[ut]) {
32
                        last = --numfailed[ut] == 0 ? 1 : 0
quelques corrections sur la ...
Sébastien MARQUE authored on 2017-02-22
33
                        print last ? "└─" : "├─", un
ajout de la supervision
Sébastien MARQUE authored on 2017-02-22
34
                    }
35
                }
quelques corrections sur la ...
Sébastien MARQUE authored on 2017-02-22
36
            }')"
ajout de la supervision
Sébastien MARQUE authored on 2017-02-22
37
    fi
38
}
ajout d'un test de mise à jo...
Sébastien MARQUE authored on 2017-02-22
39

            
alerte sur besoin de redémar...
Sébastien MARQUE authored on 2019-12-19
40
function needrestart () {
41
    _turn 24 || return
42
    echo "$(needrestart -m a -r l -bkl | awk -F': ' '{
43
        if ($1 == "NEEDRESTART-SVC")
44
            needrestart[gensub("NEEDRESTART-", "", "1", $1)][gensub(".service", "", "1", $2)]++
45
        else
46
            needrestart[gensub("NEEDRESTART-", "", "1", $1)] = $2
47
        }
48
        END {
49
            if (needrestart["KSTA"] > 1) {
50
                print "kernel:"
51
                print needrestart["KCUR"] " -> " needrestart["KEXP"]
52
            }
53
            if (length(needrestart["SVC"])) {
54
                print "services:"
55
                for (svc in needrestart["SVC"])
56
                    print "- " svc
57
            }
58
        }')"
59
}
60

            
ajout d'une fonction de test
Sébastien MARQUE authored on 2018-12-05
61
function autotest () {
62
    local testfile=/dev/shm/monitoring.autotest
63
    test -e $testfile && echo "it works" && rm -f $testfile
ajout d'un test de mise à jo...
Sébastien MARQUE authored on 2017-02-22
64
}
monitoring des cerificats
Sébastien MARQUE authored on 2017-02-25
65

            
ajout d'une alerte sur l'uti...
Sébastien MARQUE authored on 2018-12-05
66
function swap () {
67
    _turn 24 || return
68
    awk '/^\//{if ($1 !~ "zram") { p=$4/$3*100; if (p > 10) printf("%s (%.1f%%)\n", $1, p)}}' /proc/swaps
69
}
70

            
monitoring des cerificats
Sébastien MARQUE authored on 2017-02-25
71
function certificates () {
vérification des certificats...
Sébastien MARQUE authored on 2017-03-03
72
    _turn 24 || return
monitoring des cerificats
Sébastien MARQUE authored on 2017-02-25
73
    for domain in /etc/letsencrypt/live/*; do
74
        local notAfter="$(openssl x509 -enddate -noout -in $domain/fullchain.pem)"
75
        local enddate=$(date +%s -d"${notAfter#*=}")
76
        local delay=$(date +%_j -d@$(($enddate - $now)))
77
        if test $delay -lt 10; then
78
            echo "${domain##*/} expire dans $delay jours"
79
        fi
80
    done
81
}
déplacement de l'autit de ch...
Sébastien MARQUE authored on 2017-02-25
82

            
83
function load_avg () {
84
    local procs=$(grep -c "^processor" /proc/cpuinfo)
85
    local load=($(</proc/loadavg))
86
    local avg=(1 5 15)
87
    for ((i=0; i<${#avg[@]}; i++)); do
88
        test ${load[i]%.*} -ge $procs && echo "charge moyenne à ${avg[i]}min = ${load[i]}"
89
    done
90
}
déplacement de fonction pour...
Sébastien MARQUE authored on 2018-12-05
91

            
92
function upgrades () {
93
    local log="/var/log/unattended-upgrades/unattended-upgrades.log"
94
    test -r $log || return
95
    local lastline=$(tail -1 $log)
96
    local lastentry=$(date +%s -d "$(cut -f1,2 -d' ' <<< $lastline)")
97
    test -n "$lastentry" || return
98
    local status=$(cut -f3 -d' ' <<< $lastline)
99
    test $(($lastentry + 86400)) -lt $now && echo "pas de mise à jour depuis le ${lastline%% *}"
100
}