-
Notifications
You must be signed in to change notification settings - Fork 1
/
io.pl
193 lines (173 loc) · 5 KB
/
io.pl
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
#!/usr/bin/perl
#
# This script should be run every 5 minutes.
#
use strict;
use warnings;
use RRDs;
# parse configuration file
my %conf;
eval(`cat /home/spatel/rrd/rrd-conf.pl`);
die $@ if $@;
# set variables
my $datafile = "$conf{DBPATH}/io.rrd";
my $picbase = "$conf{OUTPATH}/io-";
# watch these paths
my @dev = (
"sda2",
"",
"",
"",
"",
"",
"",
"",
);
# 2.4: my @dev = (
# "8,0",
# "",
# "",
# "",
# "",
# "",
# "",
# "",
# );
my $devs = grep { $_ ne "" } @dev;
my (@read, @write);
# global error variable
my $ERR;
# whoami?
my $hostname = `/bin/hostname`;
chomp $hostname;
# generate database if absent
if ( ! -e $datafile ) {
# max 100% for each value
RRDs::create($datafile,
"DS:io0_read:COUNTER:600:0:2500000",
"DS:io0_write:COUNTER:600:0:2500000",
"DS:io1_read:COUNTER:600:0:2500000",
"DS:io1_write:COUNTER:600:0:2500000",
"DS:io2_read:COUNTER:600:0:2500000",
"DS:io2_write:COUNTER:600:0:2500000",
"DS:io3_read:COUNTER:600:0:2500000",
"DS:io3_write:COUNTER:600:0:2500000",
"DS:io4_read:COUNTER:600:0:2500000",
"DS:io4_write:COUNTER:600:0:2500000",
"DS:io5_read:COUNTER:600:0:2500000",
"DS:io5_write:COUNTER:600:0:2500000",
"DS:io6_read:COUNTER:600:0:2500000",
"DS:io6_write:COUNTER:600:0:2500000",
"DS:io7_read:COUNTER:600:0:2500000",
"DS:io7_write:COUNTER:600:0:2500000",
"RRA:AVERAGE:0.5:1:600",
"RRA:AVERAGE:0.5:6:700",
"RRA:AVERAGE:0.5:24:775",
"RRA:AVERAGE:0.5:288:797"
);
$ERR=RRDs::error;
die "ERROR while creating $datafile: $ERR\n" if $ERR;
print "created $datafile\n";
}
# build reverse lookup hash and initialize array
my %dev;
for my $idx ( 0..7 ) {
$dev{ $dev[$idx] } = $idx;
$read[ $idx ] = "U";
$write[ $idx ] = "U";
}
# get io stats
open PROC, "<", "/proc/diskstats" or die "can't open /proc/diskstats: $!\n";
while (<PROC>) {
my @io = split /\s+/;
if ( exists $dev{ $io[3] } ) {
$read[ $dev{$io[3] } ] = $io[ 6];
$write[ $dev{$io[3] } ] = $io[10];
}
}
close PROC or die "can't close /proc/diskstats: $!\n";
# 2.4: open PROC, "<", "/proc/stat" or die "can't open /proc/stat: $!\n";
#my $io;
#while ($io = <PROC>) {
# last if $io =~ /^disk_io:/;
#}
#close PROC or die "can't close /proc/stat: $!\n";
#
#my @devices = split /\s+/, $io;
#shift @devices;
#
#foreach my $device ( @devices ) {
# $device =~ /\((.*)\):\(\d+,\d+,(\d+),\d+,(\d+)\)/;
# if ( exists $dev{ $1 } ) {
# $read[ $dev{$1} ] = $2;
# $write[ $dev{$1} ] = $3;
# }
#}
# update database
my $string='N';
for my $idx ( 0..7 ) {
$string .= ':' . ( $read[$idx] ) . ':' . ( $write[$idx] );
}
RRDs::update($datafile,
$string
);
$ERR=RRDs::error;
die "ERROR while updating $datafile: $ERR\n" if $ERR;
# set up colorspace
my $drawn = 0;
my @colors = qw(
4000FF
E00070
40D030
2020F0
E0E000
00FF00
0000FF
AAAAAA
FF00FF
00FFFF
000000
900000
C0C0C0
009000
000090
909000
900090
009090
FF0000
FFFF00
);
# draw which values?
my (@def, @line);
$devs -- if $devs > 1;
for my $idx ( 0..7 ) {
if ( $dev[$idx] ne "" ) {
my $color = $colors[$drawn];
push @def, sprintf 'DEF:io%d_read=%s:io%d_read:AVERAGE', $idx, $datafile, $idx;
push @def, sprintf 'DEF:io%d_writ=%s:io%d_write:AVERAGE', $idx, $datafile, $idx;
push @def, sprintf 'CDEF:io%d_write=0,io%d_writ,-', $idx, $idx;
push @line, sprintf 'LINE1:io%d_read#%s:%s', $idx, $color, 'Read';
push @line, sprintf 'LINE1:io%d_write#%s:%s', $idx, 'FF0000', 'Write',
$drawn ++;
}
}
# draw pictures
foreach ( [3600, "hour"], [86400, "day"], [604800, "week"], [31536000, "year"] ) {
my ($time, $scale) = @{$_};
RRDs::graph($picbase . $scale . ".png",
"--start=-$time",
'--lazy',
'--imgformat=PNG',
"--title=${hostname} io statistics (last $scale)",
"--width=$conf{GRAPH_WIDTH}",
"--height=$conf{GRAPH_HEIGHT}",
'--slope-mode',
@def,
@line,
'COMMENT:\n',
'GPRINT:io0_read:AVERAGE:R\:%0.0lf',
'GPRINT:io0_write:AVERAGE:W\: %0.0lf',
);
$ERR=RRDs::error;
die "ERROR while drawing $datafile $time: $ERR\n" if $ERR;
}