File: vmstat.in

package info (click to toggle)
munin 2.0.76-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,064 kB
  • sloc: perl: 11,684; java: 1,924; sh: 1,632; makefile: 636; javascript: 365; python: 267
file content (102 lines) | stat: -rw-r--r-- 2,383 bytes parent folder | download | duplicates (5)
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
#!@@GOODSH@@
#
# Plugin to monitor the number of procs in io-sleep and other wait
# states. Uses `vmstat`.
#
# Parameters:
#
# 	config   (required)
# 	autoconf (optional - used by munin-config)
#
# $Log: vmstat.in,v $
# Revision 1.1.1.1  2006/06/04 20:53:57  he
# Import the client version of the Munin system monitoring/graphing
# tool -- project homepage is at http://munin.sourceforge.net/
#
# This package has added support for NetBSD, via a number of new plugin
# scripts where specific steps needs to be taken to collect information.
#
# I also modified the ntp_ plugin script to make it possible to not
# plot the NTP poll delay, leaving just jitter and offset, which IMO
# produces a more telling graph.
#
#
#
#
# Magick markers (optional):
#%# family=auto
#%# capabilities=autoconf



if [ "$1" = "autoconf" ]; then
    if [ -x /usr/bin/vmstat ]; then
	if /usr/bin/vmstat 1 1 2>/dev/null >/dev/null; then
	    echo yes
	    exit 0
	else
	    echo no
	    exit 0
        fi
    else
	echo no
	exit 0
    fi
fi

/usr/bin/vmstat -t -c 1 >/dev/null 2>&1
if [ $? -eq 0 ]; then
    new=true
else
    new=false
fi


if [ "$1" = "config" ]; then
    echo 'graph_title VMstat'
    echo 'graph_args --base 1000 -l 0'
    echo 'graph_vlabel process states'
    echo 'graph_category processes'
    echo 'graph_info This graph shows number of processes in each state.'

    echo 'running.label running'
    echo 'running.info processes on CPU or waiting for CPU'
    echo 'running.type GAUGE'

    echo 'sleep.label sleep'
    echo 'sleep.info processes waiting for some event'
    echo 'sleep.type GAUGE'

    if $new; then
	echo 'diskwait.label diskwait'
	echo 'diskwait.info processes waiting for disk i/o activity'
	echo 'diskwait.type GAUGE'

	echo 'pagewait.label pagewait'
	echo 'pagewait.info processes waiting for page-in'
	echo 'pagewait.type GAUGE'

    else
	echo 'iowait.label wait'
	echo 'iowait.info processes blocked for resources (i/o, paging, etc.)'
	echo 'iowait.type GAUGE'

    fi
    exit 0
fi

if $new; then
    /usr/bin/vmstat -t -c 1 | tail -1 | awk '// {
    print "running.value " $1;
    print "diskwait.value " $2;
    print "pagewait.value " $3;
    print "sleep.value " $4;
    print "swapped.value " $5;
}'
else
    /usr/bin/vmstat -c 1 | tail -1 | awk '// {
    print "running.value " $1;
    print "iowait.value " $2;
    print "sleep.value " $3;
}'
fi