spider/cmd/mrtg.pl

146 lines
5.3 KiB
Perl
Raw Normal View History

2002-09-26 00:05:22 +00:00
#
# This is a local command to generate the various statistics that
# can then be displayed on an MRTG plot
#
# Your mrtg binary must live in one of the standard places
#
# The arguments (keywords) to the mrtg command are these
#
2002-09-30 02:19:44 +00:00
# a) content (you always get the node users and nodes and data in/out)
# proc - get the processor usage
2002-09-29 23:00:57 +00:00
# agw - include the AGW stats separately
# totalspots - all spots
# hfvhf - all spots split into HF and VHF
# wwv - two graphs of WWV, one SFI and R other A and K
# wcy - WCY A and K
# all - all of the above
#
# b) actions
# test - do everything except check for and run mrtg
# nomrtg - ditto (better name)
# dataonly - only generate the data files for mrtg
# cfgonly - only generate the mrtg.cfg file (like cfgmaker)
# runmrtg - run mrtg, this is probably used with dataonly
# - together with a home rolled mrtg.cfg
#
# Copyright (c) 2002 Dirk Koopman G1TLH
#
# $Id$
2002-09-26 09:19:21 +00:00
#
2002-09-26 00:05:22 +00:00
my ($self, $line) = @_;
2002-09-26 09:19:21 +00:00
# create the arg list
my %want;
for (split /\s+/, $line) { $want{lc $_} = 1};
$want{nomrtg} = 1 if $want{cfgonly} || $want{test};
return (1, "MRTG not installed") unless $want{nomrtg} || -e '/usr/bin/mrtg' || -e '/usr/local/bin/mrtg';
2002-09-26 00:05:22 +00:00
2002-09-26 10:35:44 +00:00
my $mc = new Mrtg or return (1, "cannot initialise Mrtg $!");
2002-09-29 23:00:57 +00:00
# do Data in / out totals
my $din = $Msg::total_in;
2002-09-30 00:12:32 +00:00
my $dout = $Msg::total_out;
2002-09-29 23:00:57 +00:00
unless ($want{agw}) {
$din += $AGWMsg::total_in;
$dout += $AGWMsg::total_out;
}
$mc->cfgprint('msg', [], 64000,
2002-09-30 02:19:44 +00:00
"Cluster Data <font color=#00cc00>in</font> and <font color=#0000ff>out</font> of $main::mycall",
2002-09-29 23:35:24 +00:00
'Bytes / Sec', 'Bytes In', 'Bytes Out') unless $want{dataonly};
2002-09-29 23:00:57 +00:00
$mc->data('msg', $din, $dout, "Data in and out of $main::mycall") unless $want{cfgonly};
# do AGW stats if they apply
if ($want{agw}) {
$mc->cfgprint('agw', [], 64000,
2002-09-29 23:16:40 +00:00
"AGW Data <font color=#00cc00>in</font> and <font color=#0000ff>out</font> of $main::mycall",
2002-09-29 23:35:24 +00:00
'Bytes / Sec', 'Bytes In', 'Bytes Out') unless $want{dataonly};
$mc->data('agw', $AGWMsg::total_in, $AGWMsg::total_out, "AGW Data in and out of $main::mycall") unless $want{cfgonly};
}
2002-09-30 02:19:44 +00:00
if (!$main::is_win && ($want{proc} || $want{all})) {
2002-09-30 02:30:39 +00:00
$ENV{COLUMNS} = 250;
2002-09-30 02:19:44 +00:00
my $secs;
my $f = new IO::File "ps aux |";
# dbg("$f");
if ($f) {
while (<$f>) {
chomp;
my $l = $_;
# dbg($l);
2002-09-30 02:38:07 +00:00
next unless $l =~ m{cluster\.pl$};
2002-09-30 02:19:44 +00:00
my @f = split /\s+/, $l;
# dbg("$f[9]");
my ($m, $s) = split /:/, $f[9];
$secs = ($m * 60) + $s;
last;
}
$f->close;
}
if ($secs) {
2002-09-30 02:52:17 +00:00
$mc->cfgprint('proc', [qw(noo perminute)], 5*60,
2002-09-30 02:19:44 +00:00
"Processor Usage",
2002-09-30 02:48:34 +00:00
'Proc Secs / min', 'Proc Secs', 'Proc Secs') unless $want{dataonly};
2002-09-30 02:19:44 +00:00
$mc->data('proc', $secs, $secs, "Processor Usage") unless $want{cfgonly};
}
}
2002-09-26 00:05:22 +00:00
# do the users and nodes
my $users = DXChannel::get_all_users();
my $nodes = DXChannel::get_all_nodes();
2002-09-26 10:35:44 +00:00
$mc->cfgprint('users', [qw(unknaszero gauge)], 500,
2002-09-29 23:16:40 +00:00
"<font color=#00cc00>Users</font> and <font color=#0000ff>Nodes</font> on $main::mycall",
'Users / Nodes', 'Users', 'Nodes') unless $want{dataonly};
$mc->data('users', $users, $nodes, 'Users / Nodes') unless $want{cfgonly};
2002-09-26 00:05:22 +00:00
# do the total users and nodes
if ($want{totalusers} || $want{all}) {
$nodes = Route::Node::count();
$users = Route::User::count();
$mc->cfgprint('totalusers', [qw(unknaszero gauge)], 10000,
2002-09-29 23:16:40 +00:00
'Total <font color=#00cc00>Users</font> and <font color=#0000ff>Nodes</font> in the Visible Cluster Network',
'Users / Nodes', 'Users', 'Nodes') unless $want{dataonly};
$mc->data('totalusers', $users, $nodes, 'Total Users and Nodes in the Visible Cluster Network') unless $want{cfgonly};
2002-09-26 00:05:22 +00:00
}
# do the total spots
if ($want{totalspots} || $want{all}) {
$mc->cfgprint('totalspots', [qw(unknaszero gauge noi)], 1000, 'Total Spots',
2002-09-30 00:12:32 +00:00
'Spots / min', 'Spots', 'Spots') unless $want{dataonly};
$mc->data('totalspots', $Spot::totalspots, $Spot::totalspots, 'Total Spots') unless $want{cfgonly};
2002-09-26 10:35:44 +00:00
$Spot::totalspots = 0;
2002-09-26 00:05:22 +00:00
}
# do the HF and VHF spots
if ($want{hfvhf} || $want{all}) {
2002-09-29 23:16:40 +00:00
$mc->cfgprint('hfspots', [qw(unknaszero gauge)], 1000, '<font color=#00cc00>HF</font> and <font color=#0000ff>VHF+</font> Spots',
2002-09-30 00:12:32 +00:00
'Spots / min', 'HF', 'VHF') unless $want{dataonly};
$mc->data('hfspots', $Spot::hfspots, $Spot::vhfspots, 'HF and VHF+ Spots') unless $want{cfgonly};
2002-09-26 10:35:44 +00:00
$Spot::hfspots = $Spot::vhfspots = 0;
}
# wwv stuff
if ($want{wwv} || $want{all}) {
2002-09-29 23:16:40 +00:00
$mc->cfgprint('wwvsfi', [qw(gauge)], 1000, 'WWV <font color=#00cc00>SFI</font> and <font color=#0000ff>R</font>', 'SFI / R', 'SFI', 'R') unless $want{dataonly};
$mc->data('wwvsfi', ($Geomag::r || $WCY::r), ($Geomag::sfi || $WCY::sfi), 'WWV SFI and R') unless $want{cfgonly};
2002-09-29 23:16:40 +00:00
$mc->cfgprint('wwvka', [qw(gauge)], 1000, 'WWV <font color=#00cc00>A</font> and <font color=#0000ff>K</font>',
'A / K', 'A', 'K') unless $want{dataonly};
$mc->data('wwvka', $Geomag::a, $Geomag::k, 'WWV A and K') unless $want{cfgonly};
2002-09-26 10:35:44 +00:00
}
# WCY stuff
if ($want{wcy} || $want{all}) {
2002-09-29 23:16:40 +00:00
$mc->cfgprint('wcyka', [qw(gauge)], 1000, 'WCY <font color=#00cc00>A</font> and <font color=#0000ff>K</font>',
'A / K', 'A', 'K') unless $want{dataonly};
$mc->data('wcyka', $WCY::a, $WCY::k, 'WCY A and K') unless $want{cfgonly};
2002-09-26 09:19:21 +00:00
}
2002-09-26 00:05:22 +00:00
#
2002-09-26 09:19:21 +00:00
# do the mrtg thing
#
my @out = $mc->run unless $want{nomrtg};
2002-09-26 09:19:21 +00:00
return (1, @out);