mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-08-03 14:48:22 +00:00
move our plugin in a subdir, like the others
This commit is contained in:
parent
9f8061ff98
commit
f3eca64eda
1 changed files with 0 additions and 0 deletions
159
plugins/relayd/relayd
Executable file
159
plugins/relayd/relayd
Executable file
|
@ -0,0 +1,159 @@
|
|||
#! /usr/bin/perl -w
|
||||
|
||||
use strict;
|
||||
use Munin::Plugin;
|
||||
|
||||
=head1 NAME
|
||||
|
||||
relayd - Plugin to show statistics about relayd load balancer.
|
||||
|
||||
=head1 CONFIGURATION
|
||||
|
||||
The following environment variables are used by this plugin:
|
||||
|
||||
=over 4
|
||||
|
||||
=item logfile
|
||||
|
||||
The file where MailScanner logs its action (Default:
|
||||
/var/log/relayd.log)
|
||||
|
||||
=item logtail
|
||||
|
||||
The location of the logtail command (Default: /usr/sbin/logtail)
|
||||
|
||||
=item offsetfile
|
||||
|
||||
The location of the offset file (Default:
|
||||
/var/log/munin/plugin-state/munin-relayd.offset)
|
||||
|
||||
=back
|
||||
|
||||
=head1 USAGE
|
||||
|
||||
Requires the logtail command somewhere in path
|
||||
|
||||
=head1 TODO
|
||||
|
||||
* determine if the table is completely down (may be *impossible* if a partial
|
||||
downtime becomes complete between two runs)
|
||||
* look again at Munin::Plugin to see if we can simplify things here (duh.)
|
||||
* need_multigraph()
|
||||
|
||||
=head1 MAGIC MARKERS
|
||||
|
||||
#%# family=contrib
|
||||
#%# capabilities=
|
||||
|
||||
We should autoconf (check if logtail and the logfile exist, basically).
|
||||
|
||||
See http://munin-monitoring.org/wiki/ConcisePlugins
|
||||
|
||||
=cut
|
||||
|
||||
my $logfile = '/var/log/relayd.log';
|
||||
my $logtail = '/usr/sbin/logtail';
|
||||
my $offsetfile = "/var/munin/plugin-state/munin-relayd.offset";
|
||||
my $configfile = "/usr/local/etc/relayd.conf";
|
||||
|
||||
(defined($ENV{'logfile'})) and $logfile = $ENV{'logfile'};
|
||||
(defined($ENV{'logtail'})) and $logtail = $ENV{'logtail'};
|
||||
(defined($ENV{'offsetfile'})) and $offsetfile = $ENV{'offsetfile'};
|
||||
(defined($ENV{'configfile'})) and $configfile = $ENV{'offsetfile'};
|
||||
|
||||
my $cmd = (defined($ARGV[0])) ? $ARGV[0] : '';
|
||||
|
||||
my @hosts = ();
|
||||
open(my $conf, "<", $configfile) or die "can't open $configfile: $!";
|
||||
my $content = join("", <$conf>);
|
||||
while ( $content =~ /table\s*<([^>]*)>\s*{([^}]*)}/g) {
|
||||
my $hosts = $2;
|
||||
$hosts =~ s/#.*$//mg; # comments
|
||||
$hosts =~ s/^\s+//mg; # trim spaces before lines
|
||||
print "table $1: $hosts\n" if defined $ENV{MUNIN_DEBUG};
|
||||
push @hosts , split /\s+/, $hosts;
|
||||
}
|
||||
|
||||
if ($cmd eq 'config') {
|
||||
print("multigraph relayd_avail\n");
|
||||
print("graph_title Relayd host availability\n");
|
||||
print("graph_args --lower-limit 0\n");
|
||||
print("graph_vlabel % availability\n");
|
||||
print("graph_category Load balancer\n");
|
||||
print("graph_info Ratio of time when this host was up. This is provided by relayd itself (not averaged by this plugin)\n");
|
||||
for my $host (@hosts) {
|
||||
my $clean = clean_fieldname($host);
|
||||
$clean = clean_fieldname('host'.$host) unless ($clean ne '_');
|
||||
print("$clean.label $host\n");
|
||||
}
|
||||
print("multigraph relayd_incidents\n");
|
||||
print("graph_title Relayd host incidents\n");
|
||||
print("graph_args --lower-limit 0\n");
|
||||
print("graph_vlabel down incidents\n");
|
||||
print("graph_category Load balancer\n");
|
||||
print("graph_info Number of times this host went down during \${graph_period}\n");
|
||||
for my $host (@hosts) {
|
||||
my $clean = clean_fieldname($host);
|
||||
$clean = clean_fieldname('host'.$host) unless ($clean ne '_');
|
||||
print("$clean.type ABSOLUTE\n");
|
||||
print("$clean.label $host\n");
|
||||
}
|
||||
exit(0);
|
||||
}
|
||||
|
||||
# sample lines:
|
||||
# Mar 8 23:05:28 rtr0 relayd[81814]: host 209.44.112.101, check http code (2000ms), state up -> down, availability 97.83%
|
||||
# Mar 8 23:05:28 rtr0 relayd[81814]: host 209.44.112.96, check http code (2001ms), state up -> down, availability 98.12%
|
||||
# Mar 8 23:05:31 rtr0 relayd[81813]: table hag: 1 added, 2 deleted, 0 changed, 0 killed
|
||||
# Mar 8 23:05:31 rtr0 relayd[81814]: host 209.44.112.101, check http code (3ms), state down -> up, availability 97.83%
|
||||
# Mar 8 23:05:31 rtr0 relayd[81814]: host 209.44.112.96, check http code (3ms), state down -> up, availability 98.12%
|
||||
# Mar 8 23:05:36 rtr0 relayd[81813]: table hag: 2 added, 1 deleted, 0 changed, 0 killed
|
||||
# Mar 8 23:21:58 rtr0 relayd[81814]: host 209.44.112.96, check http code (2000ms), state up -> down, availability 98.12%
|
||||
# Mar 8 23:22:01 rtr0 relayd[81813]: table hag: 0 added, 1 deleted, 0 changed, 0 killed
|
||||
|
||||
my (%avail, %down);
|
||||
|
||||
open(my $log, "$logtail -f $logfile -o $offsetfile |") or die("cannot open $logfile: $!");
|
||||
#open(my $log, "tail -100 $logfile |") or die("cannot open $logfile: $!");
|
||||
while (<$log>) {
|
||||
if (/host ([^,]*), check[^,]*, state [^>]* -> ([^,]*), availability ([0-9]+.[0-9]+)%/) {
|
||||
my $host = clean_fieldname($1);
|
||||
$host = clean_fieldname('host'.$1) unless ($host ne '_');
|
||||
|
||||
$down{$host} = 0 unless defined $down{$host};
|
||||
$down{$host}++ if $2 eq 'down';
|
||||
# yes, we overwrite previous value and take only the recent one. be sad.
|
||||
$avail{$host} = $3;
|
||||
}
|
||||
}
|
||||
close($log) or warn "failed to close pipe: $!";
|
||||
|
||||
# get missing availability values from relayctl, if necessary
|
||||
for my $host (@hosts) {
|
||||
my $ran = 0;
|
||||
if (!defined $avail{$host} && !$ran) {
|
||||
open(my $status, "relayctl show summary|") or die "can't open relayctl: $!";
|
||||
while (<$status>) {
|
||||
if (/([\w\.]+)\s+(\d+\.\d+)%/) {
|
||||
print "found spare value: $2 for $1\n" if defined $ENV{MUNIN_DEBUG};
|
||||
$avail{$1} = $2 unless defined($avail{$1});
|
||||
}
|
||||
}
|
||||
close $status or die "can't close pipe: $!";
|
||||
$ran = 1;
|
||||
}
|
||||
}
|
||||
|
||||
print "multigraph relayd_avail\n";
|
||||
for my $host (@hosts) {
|
||||
my $clean = clean_fieldname($host);
|
||||
$clean = clean_fieldname('host'.$host) unless ($clean ne '_');
|
||||
print "$clean.value " . ($avail{$host} || 'NaN'). "\n";
|
||||
}
|
||||
|
||||
print "multigraph relayd_incidents\n";
|
||||
for my $host (@hosts) {
|
||||
my $clean = clean_fieldname($host);
|
||||
$clean = clean_fieldname('host'.$host) unless ($clean ne '_');
|
||||
print "$clean.value " . ($down{$host} || 0). "\n";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue