git.lirion.de

Of git, get, and gud

summaryrefslogtreecommitdiffstats
path: root/nagios-plugins-contrib-24.20190301~bpo9+1/percona-nagios-plugins/nagios/bin/pmp-check-unix-memory
blob: a9a3fdcc4e8f80cbdf563c09553eb745e3d9be35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
#!/bin/sh

# ########################################################################
# This program is part of $PROJECT_NAME$
# License: GPL License (see COPYING)
# Authors:
#  Baron Schwartz, Roman Vynar
# ########################################################################

# ########################################################################
# Redirect STDERR to STDOUT; Nagios doesn't handle STDERR.
# ########################################################################
exec 2>&1

# ########################################################################
# Set up constants, etc.
# ########################################################################
STATE_OK=0
STATE_WARNING=1
STATE_CRITICAL=2
STATE_UNKNOWN=3
STATE_DEPENDENT=4

# ########################################################################
# Run the program.
# ########################################################################
main() {

   # Get options
   for o; do
      case "${o}" in
         -w)        shift; OPT_WARN="${1}"; shift; ;;
         -d)        shift; ;; # left for backward-compatibility
         -c)        shift; OPT_CRIT="${1}"; shift; ;;
         --version) grep -A2 '^=head1 VERSION' "$0" | tail -n1; exit 0 ;;
         --help)    perl -00 -ne 'm/^  Usage:/ && print' "$0"; exit 0 ;;
         -*)        echo "Unknown option ${o}.  Try --help."; exit 1; ;;
      esac
   done
   OPT_WARN=${OPT_WARN:-90}
   OPT_CRIT=${OPT_CRIT:-95}
   if is_not_sourced; then
      if [ -n "$1" ]; then
         echo "WARN spurious command-line options: $@"
         exit 1
      fi
   fi

   NOTE="UNK cannot find memory statistics"
   TEMP=$(mktemp -t "${0##*/}.XXXXXX") || exit $?
   trap "rm -f '${TEMP}' >/dev/null 2>&1" EXIT
   if [ -e /proc/meminfo ] && cat /proc/meminfo > "${TEMP}" ; then
      USD_PCT=$(get_used_memory_linux "${TEMP}")
   elif which sysctl > /dev/null && sysctl -a > "${TEMP}" ; then
      USD_PCT=$(get_used_memory_bsd "${TEMP}")
   else
      echo $NOTE
      exit
   fi

   NOTE="Memory ${USD_PCT}% used"
   if [ "${USD_PCT:-0}" -ge "${OPT_CRIT}" ]; then
      NOTE="CRIT $NOTE. $(get_largest_process)"
   elif [ "${USD_PCT:-0}" -ge "${OPT_WARN}" ]; then
      NOTE="WARN $NOTE. $(get_largest_process)"
   else
      NOTE="OK $NOTE"
   fi

   # Build the common perf data output for graph trending
   PERFDATA="memory_used=${USD_PCT:-0};${OPT_WARN};${OPT_CRIT};0;100"
   echo "$NOTE | $PERFDATA"
}

# ########################################################################
# Find the largest process
# ########################################################################
get_largest_process () {
   ALL_PROCS=$(ps axo pid,%mem,ucomm | sort -k2 -nr)
   BIGGEST=$(echo $ALL_PROCS | head -n 1)
   BIG_PID=$(echo $BIGGEST | cut -d' ' -f1)
   BIG_MEM=$(echo $BIGGEST | cut -d' ' -f2)
   BIG_COMMAND=$(echo $BIGGEST | cut -d' ' -f3)
   echo "Largest process: ${BIG_COMMAND} (${BIG_PID}) = ${BIG_MEM}%"
}

# ########################################################################
# Get the used memory from /proc/meminfo
# Consider MemAvailable if available in the file (starting procps-ng 3.3.10).
# See https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=34e431b0ae398fc54ea69ff85ec700722c9da773
# ########################################################################
get_used_memory_linux() {
awk '/^MemTotal:/ {total = $2;}
     /^MemFree:/ {free = $2;}
     /^MemAvailable:/ {avail = $2;}
     /^Buffers:/ {buffers = $2;}
     /^Cached:/ {cached = $2;
        if (avail == "") avail = free + buffers + cached;
        printf "%d\n", (total - avail) / total * 100;}' "$1"
}
# ########################################################################
# Get the used memory from sysctl for BSD systems
# ########################################################################
get_used_memory_bsd() {
   awk '/vm.stats.vm.v_cache_count:/ {cache = $2}
        /vm.stats.vm.v_inactive_count:/ {inactive = $2}
        /vm.stats.vm.v_free_count:/ {free = $2}
        /vm.stats.vm.v_page_count:/ {
           total = $2;
           used = total - inactive - cache - free;
           printf "%d\n", used / total * 100}' "$1"
}

# ########################################################################
# Determine whether this program is being executed directly, or sourced/included
# from another file.
# ########################################################################
is_not_sourced() {
   [ "${0##*/}" = "pmp-check-unix-memory" ] || [ "${0##*/}" = "bash" -a "$_" = "$0" ]
}

# ########################################################################
# Execute the program if it was not included from another file.
# This makes it possible to include without executing, and thus test.
# ########################################################################
if is_not_sourced; then
   OUTPUT=$(main "$@")
   EXITSTATUS=$STATE_UNKNOWN
   case "${OUTPUT}" in
      UNK*)  EXITSTATUS=$STATE_UNKNOWN;  ;;
      OK*)   EXITSTATUS=$STATE_OK;       ;;
      WARN*) EXITSTATUS=$STATE_WARNING;  ;;
      CRIT*) EXITSTATUS=$STATE_CRITICAL; ;;
   esac
   echo "${OUTPUT}"
   exit $EXITSTATUS
fi

# ############################################################################
# Documentation
# ############################################################################
: <<'DOCUMENTATION'
=pod

=head1 NAME

pmp-check-unix-memory - Alert on low memory.

=head1 SYNOPSIS

  Usage: pmp-check-unix-memory [OPTIONS]
  Options:
    -c CRIT     Critical threshold; default 95%.
    -w WARN     Warning threshold; default 90%.
    --help      Print help and exit.
    --version   Print version and exit.
  Options must be given as --option value, not --option=value or -Ovalue.
  Use perldoc to read embedded documentation with more details.

=head1 DESCRIPTION

This Nagios plugin examines C</proc/meminfo> (Linux) or the output of C<sysctl> (BSD)
to check whether the system is running out of memory and finds the largest
process in memory from C<ps> output.

The plugin is tested on GNU/Linux and FreeBSD.

=head1 PRIVILEGES

This plugin does not access MySQL.

This plugin executes the following UNIX commands that may need special privileges:

=over

=item *

cat /proc/meminfo (Linux), sysctl (BSD)

=item *

ps

=back

=head1 COPYRIGHT, LICENSE, AND WARRANTY

This program is copyright 2012-$CURRENT_YEAR$ Baron Schwartz, 2012-$CURRENT_YEAR$ Percona Inc.
Feedback and improvements are welcome.

THIS PROGRAM IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, version 2.  You should have received a copy of the GNU General
Public License along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.

=head1 VERSION

$PROJECT_NAME$ pmp-check-unix-memory $VERSION$

=cut

DOCUMENTATION