6 use Getopt::Long ('GetOptions');
8 use File::Basename ('dirname');
10 our $InDir = '/var/lib/collectd';
11 our $OutDir = '/tmp/collectd-4';
12 our $Hostname = 'localhost';
15 # +------------+----------------------+----+----+----+
16 # ! Subdir ! Type ! ti ! pi ! ex !
17 # +------------+----------------------+----+----+----+
18 # ! apache ! apache_bytes ! ! ! !
19 # ! apache ! apache_requests ! ! ! !
20 # ! apache ! apache_scoreboard ! x ! ! !
21 # ! battery ! charge ! ! x ! !
22 # ! apcups ! charge_percent ! ! ! !
24 # ! ! cpufreq ! x ! ! !
25 # ! battery ! current ! ! x ! !
26 # ! ntpd ! delay ! x ! ! !
29 # ! dns ! dns_traffic ! ! ! !
30 # ! apple_se.. ! fanspeed ! x ! ! !
31 # ! mbmon ! fanspeed ! x ! ! !
32 # ! apcups ! frequency ! x ! ! !
33 # ! ntpd ! frequency_offset ! x ! ! !
34 # ! ! hddtemp ! x ! ! !
35 # ! interface ! if_errors ! ! x ! !
36 # ! interface ! if_packets ! ! x ! !
37 # ! ! lm_sensors ! ! ! !
39 # ! apcups ! load_percent ! ! ! !
41 # ! ! multimeter ! ! ! !
42 # ! mysql ! mysql_commands ! x ! ! !
43 # ! mysql ! mysql_handler ! x ! ! !
44 # ! mysql ! mysql_qcache ! ! ! !
45 # ! mysql ! mysql_threads ! ! ! !
46 # ! ! nfs2_procedures ! x ! ! x !
47 # ! ! nfs3_procedures ! x ! ! x !
48 # ! dns ! opcode ! x ! ! !
49 # ! ! partition ! x ! ! !
51 # ! ! processes ! ! ! !
52 # ! processes ! ps_count ! x ! ! !
53 # ! processes ! ps_cputime ! x ! ! !
54 # ! processes ! ps_pagefaults ! x ! ! !
55 # ! processes ! ps_rss ! x ! ! !
56 # ! dns ! qtype ! x ! ! !
57 # ! dns ! rcode ! x ! ! !
58 # ! (*) ! sensors ! x ! ! !
59 # ! ! serial ! x ! ! !
62 # ! apple_se.. ! temperature ! x ! ! !
63 # ! mbmon ! temperature ! x ! ! !
64 # ! ntpd ! time_dispersion ! x ! ! !
65 # ! ntpd ! time_offset ! x ! ! !
66 # ! apcups ! timeleft ! ! ! !
67 # ! ! traffic ! x ! ! ! ->rx,tx
68 # ! vserver ! traffic ! x ! x ! ! ->rx.tx
70 # ! apucups ! voltage ! x ! ! !
71 # ! battery ! voltage ! ! x ! !
72 # ! mbmon ! voltage ! x ! ! !
73 # ! vserver ! vs_memory ! ! x ! !
74 # ! vserver ! vs_processes ! ! x ! !
75 # ! vserver ! vs_threads ! ! x ! !
76 # ! ! wireless ! x ! ! !
77 # +------------+----------------------+----+----+----+
97 cpu => sub { $_ = shift; $_->{'plugin_instance'} = $_->{'type_instance'}; $_->{'type_instance'} = undef; $_; },
98 hddtemp => sub { $_ = shift; $_->{'plugin'} = 'hddtemp'; $_->{'type'} = 'temperature'; $_->{'type_instance'} = $_->{'type_instance'}; $_; },
99 if_errors => sub { $_ = shift; $_->{'type_instance'} = $_->{'plugin_instance'}; $_->{'plugin_instance'} = undef; $_; },
100 if_packets => sub { $_ = shift; $_->{'type_instance'} = $_->{'plugin_instance'}; $_->{'plugin_instance'} = undef; $_; },
101 nfs2_procedures => sub { $_ = shift; @$_{qw(plugin plugin_instance type type_instance)} = ('nfs', 'v2' . $_->{'type_instance'}, 'nfs_procedure', undef); $_; },
102 nfs3_procedures => sub { $_ = shift; @$_{qw(plugin plugin_instance type type_instance)} = ('nfs', 'v3' . $_->{'type_instance'}, 'nfs_procedure', undef); $_; },
103 partition => sub { $_ = shift; $_->{'plugin'} = 'disk'; $_; },
104 processes => sub { $_ = shift; $_->{'type'} = 'ps_state'; $_; },
105 traffic => sub { $_ = shift; $_->{'plugin'} =~ s/^traffic$/interface/; @$_{qw(plugin_instance type)} = (undef, 'if_octets'); $_; }
110 cpu => { from => [qw(user nice syst idle wait)], to => 'value', type_instance => [qw(user nice system idle wait)] },
111 memory => { from => [qw(used free buffers cached)], to => 'value', type_instance => [qw(used free buffered cached)] },
112 nfs3_procedures => { from => [qw(null getattr lookup access readlink
113 read write create mkdir symlink mknod remove rmdir rename link
114 readdir readdirplus fsstat fsinfo pathconf commit)], to => 'value' },
115 nfs2_procedures => { from => [qw(create fsstat getattr link lookup
116 mkdir null read readdir readlink remove rename rmdir root
117 setattr symlink wrcache write)], to => 'value' },
118 processes => { from => [qw(running sleeping zombies stopped paging blocked)], to => 'value' },
119 swap => { from => [qw(cached free used resv)], to => 'value', type_instance => [qw(cached free used reserved)] }
124 traffic => { from => [qw(incoming outgoing)], to => [qw(rx tx)] },
125 vs_processes => { from => [qw(total)], to => [qw(value)] },
128 GetOptions ("indir|i=s" => \$InDir,
129 "outdir|o=s" => \$OutDir,
130 "hostname=s" => \$Hostname) or exit_usage ();
132 die "No such directory: $InDir" if (!-d $InDir);
137 @Files = find_files ();
141 my $orig_filename = $_;
142 my $orig = parse_file ($orig_filename);
143 my $dest = translate_file ($orig);
144 my $dest_filename = get_filename ($dest);
146 my $dest_directory = dirname ($dest_filename);
147 if (!exists ($OutDirs{$dest_directory}))
149 print "[ -d '$OutDir/$dest_directory' ] || mkdir -p '$OutDir/$dest_directory'\n";
150 $OutDirs{$dest_directory} = 1;
153 if (($orig->{'type'} eq 'disk') || ($orig->{'type'} eq 'partition'))
155 special_disk ($orig_filename, $orig, $dest_filename, $dest);
157 elsif (exists ($TypeSplit{$orig->{'type'}}))
159 my $src_dses = $TypeSplit{$orig->{'type'}}->{'from'};
160 my $dst_ds = $TypeSplit{$orig->{'type'}}->{'to'};
161 my $type_instances = exists ($TypeSplit{$orig->{'type'}}->{'type_instance'})
162 ? $TypeSplit{$orig->{'type'}}->{'type_instance'}
163 : $TypeSplit{$orig->{'type'}}->{'from'};
165 for (my $i = 0; $i < @$src_dses; $i++)
167 my $src_ds = $src_dses->[$i];
168 $dest->{'type_instance'} = $type_instances->[$i];
169 $dest_filename = get_filename ($dest);
170 print "./rrd_filter.px -i '$InDir/$orig_filename' -m '${src_ds}:${dst_ds}' -o '$OutDir/$dest_filename'\n";
175 print "cp '$InDir/$orig_filename' '$OutDir/$dest_filename'\n";
178 if (exists ($TypeRename{$orig->{'type'}}))
180 my $src_dses = $TypeRename{$orig->{'type'}}->{'from'};
181 my $dst_dses = $TypeRename{$orig->{'type'}}->{'to'};
183 print "rrdtool tune '$OutDir/$dest_filename'";
184 for (my $i = 0; $i < @$src_dses; $i++)
186 print " --data-source-rename "
187 . $src_dses->[$i] . ':' . $dst_dses->[$i];
201 if (defined ($TypeTranslate{$orig->{'type'}}))
203 $TypeTranslate{$orig->{'type'}}->($dest);
212 my $filename = $args->{'host'}
213 . '/' . $args->{'plugin'} . (defined ($args->{'plugin_instance'}) ? '-'.$args->{'plugin_instance'} : '')
214 . '/' . $args->{'type'} . (defined ($args->{'type_instance'}) ? '-'.$args->{'type_instance'} : '') . '.rrd';
221 my $fullname = shift;
222 my @parts = split ('/', $fullname);
232 $filename = pop (@parts);
234 if ($filename =~ m/^([^-]+)(?:-(.*))?\.rrd$/)
246 my $dirname = pop (@parts);
247 my $regex_str = join ('|', keys (%Subdirs));
248 if ($dirname =~ m/^($regex_str)(?:-(.*))?$/)
251 $plugin_instance = $2;
255 push (@parts, $dirname);
265 $host = pop (@parts);
276 plugin_instance => $plugin_instance,
278 type_instance => $type_instance
284 my $reldir = @_ ? shift : '';
285 my $absdir = $InDir . ($reldir ? "/$reldir" : '');
292 opendir ($dh, $absdir) or die ("opendir ($absdir): $!");
293 while (my $file = readdir ($dh))
295 next if ($file =~ m/^\./);
296 next if (-l "$absdir/$file");
297 if (-d "$absdir/$file")
299 push (@dirs, ($reldir ? "$reldir/" : '') . $file);
301 elsif ($file =~ m/\.rrd$/)
303 push (@files, ($reldir ? "$reldir/" : '') . $file);
308 for (my $i = 0; $i < @dirs; $i++)
310 push (@files, find_files ($dirs[$i]));
317 sub _special_disk_instance
319 my $orig_instance = shift;
321 if (!defined ($cache))
324 open ($fh, "< /proc/diskstats") or die ("open (/proc/diststats): $!");
327 while (my $line = <$fh>)
330 my @fields = split (' ', $line);
331 $cache->{$fields[0] . '-' . $fields[1]} = $fields[2];
336 return (defined ($cache->{$orig_instance})
337 ? $cache->{$orig_instance}
343 my $orig_filename = shift;
345 my $dest_filename = shift;
349 $dest->{'type_instance'} = undef;
350 $dest->{'plugin_instance'} = _special_disk_instance ($orig->{'type_instance'});
351 if ($dest->{'plugin_instance'} eq $orig->{'type_instance'})
353 print qq(echo "You may need to rename these files" >&2\n);
356 $dest->{'type'} = 'disk_merged';
357 $dest_filename = get_filename ($dest);
359 $dest_directory = dirname ($dest_filename);
360 if (!exists ($OutDirs{$dest_directory}))
362 print "[ -d '$OutDir/$dest_directory' ] || mkdir -p '$OutDir/$dest_directory'\n";
363 $OutDirs{$dest_directory} = 1;
366 print "./rrd_filter.px -i '$InDir/$orig_filename' -m 'rmerged:read' -m 'wmerged:write' -o '$OutDir/$dest_filename'\n";
368 $dest->{'type'} = 'disk_octets';
369 $dest_filename = get_filename ($dest);
370 print "./rrd_filter.px -i '$InDir/$orig_filename' -m 'rbytes:read' -m 'wbytes:write' -o '$OutDir/$dest_filename'\n";
372 $dest->{'type'} = 'disk_ops';
373 $dest_filename = get_filename ($dest);
374 print "./rrd_filter.px -i '$InDir/$orig_filename' -m 'rcount:read' -m 'wcount:write' -o '$OutDir/$dest_filename'\n";
376 $dest->{'type'} = 'disk_time';
377 $dest_filename = get_filename ($dest);
378 print "./rrd_filter.px -i '$InDir/$orig_filename' -m 'rtime:read' -m 'wtime:write' -o '$OutDir/$dest_filename'\n";
384 Usage: $0 [-i indir] [-o outdir] [--hostname myhostname]