1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

Reduce number of categories

riak -> other (riak)
smf -> forum (smf)
reddit -> other (reddit)
sge -> htc (sge)
netscaler -> loadbalancer (netscaler)
nutcracker -> other (twemproxy)
requesttracker -> other (requesttracker)
passenger -> webserver (passenger)
gearman -> other (gearman)
This commit is contained in:
dipohl 2017-02-23 23:12:19 +01:00
parent 212768ed9b
commit 63351ab535
20 changed files with 19 additions and 19 deletions

57
plugins/smf/smf_errors Normal file
View file

@ -0,0 +1,57 @@
#!/usr/bin/perl
#
# Munin plugin for erorrs count over a SMF forum database
#
# Copyright (C) 2013 - digger (http://simplemachines.ru)
# Based on Rowdy Schwachfer (http://rowdy.nl) 's Spotweb plugin
#
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
# Configuration example
#
#[smf*]
#env.mysql /usr/bin/mysql # MySQL binary (optional)
#env.db smf # SMF database (required)
#env.db_prefix smf_ # SMF database prefix(required)
#env.db_user myuser # SMF database user (required)
#env.db_password mypassword # SMF database password (required)
use strict;
my $MYSQL = $ENV{'mysql'} || "/usr/bin/mysql";
my $MYSQLOPTS = "-u " . $ENV{'db_user'} . " -p" . $ENV{'db_password'};
my $DATABASE = $ENV{'db'} || "smf";
my $PREFIX = $ENV{'db_prefix'} || "smf_";
# Output for config
if(defined $ARGV[0] && $ARGV[0] eq 'config') {
print <<EOC
graph_title SMF Errors Log
graph_vlabel Number of errors
graph_category forum
errors.label Errors
graph_scale no
errors.warning 10000
errors.critical 100000
EOC
;
exit 0;
}
#Errors count
my $errors = `$MYSQL $MYSQLOPTS -e 'SELECT COUNT(*) FROM ${DATABASE}.${PREFIX}log_errors'`;
$errors =~ /(\d+)/;
print "errors.value ".$1."\n";

View file

@ -0,0 +1,57 @@
#!/usr/bin/perl
#
# Munin plugin for mail_queue stats over a SMF forum database
#
# Copyright (C) 2013 - digger (http://simplemachines.ru)
# Based on Rowdy Schwachfer (http://rowdy.nl) 's Spotweb plugin
#
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
# Configuration example
#
#[smf*]
#env.mysql /usr/bin/mysql # MySQL binary (optional)
#env.db smf # SMF database (required)
#env.db_prefix smf_ # SMF database prefix(required)
#env.db_user myuser # SMF database user (required)
#env.db_password mypassword # SMF database password (required)
use strict;
my $MYSQL = $ENV{'mysql'} || "/usr/bin/mysql";
my $MYSQLOPTS = "-u " . $ENV{'db_user'} . " -p" . $ENV{'db_password'};
my $DATABASE = $ENV{'db'} || "smf";
my $PREFIX = $ENV{'db_prefix'} || "smf_";
# Output for config
if(defined $ARGV[0] && $ARGV[0] eq 'config') {
print <<EOC
graph_title SMF Mail Queue
graph_vlabel Number of emails
graph_category forum
emails.label Emails
graph_scale no
emails.warning 10000
emails.critical 100000
EOC
;
exit 0;
}
#Emails count
my $emails = `$MYSQL $MYSQLOPTS -e 'SELECT COUNT(*) FROM ${DATABASE}.${PREFIX}mail_queue'`;
$emails =~ /(\d+)/;
print "emails.value ".$1."\n";

84
plugins/smf/smf_online Normal file
View file

@ -0,0 +1,84 @@
#!/usr/bin/perl
#
# Munin plugin for online users stats over a SMF forum database
#
# Copyright (C) 2013 - digger (http://simplemachines.ru)
# Based on Rowdy Schwachfer (http://rowdy.nl) 's Spotweb plugin
#
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
# Configuration example
#
#[smf*]
#env.mysql /usr/bin/mysql # MySQL binary (optional)
#env.db smf # SMF database (required)
#env.db_prefix smf_ # SMF database prefix(required)
#env.db_user myuser # SMF database user (required)
#env.db_password mypassword # SMF database password (required)
use strict;
my $MYSQL = $ENV{'mysql'} || "/usr/bin/mysql";
my $MYSQLOPTS = "-u " . $ENV{'db_user'} . " -p" . $ENV{'db_password'};
my $DATABASE = $ENV{'db'} || "smf";
my $PREFIX = $ENV{'db_prefix'} || "smf_";
# Output for config
if(defined $ARGV[0] && $ARGV[0] eq 'config') {
print <<EOC
graph_title SMF Users Online
graph_vlabel Number of sessions
graph_category forum
guests.label Guests
graph_scale no
all.warning 1000
all.critical 10000
EOC
;
print <<EOC
users.label Registered Users
EOC
;
print <<EOC
spiders.label Spiders
EOC
;
print <<EOC
all.label All
EOC
;
exit 0;
}
#Guests count
my $guests = `$MYSQL $MYSQLOPTS -e 'SELECT COUNT(*) FROM ${DATABASE}.${PREFIX}log_online WHERE id_member = 0 AND id_spider = 0'`;
$guests =~ /(\d+)/;
print "guests.value ".$1."\n";
#Spiders count
my $spiders = `$MYSQL $MYSQLOPTS -e 'SELECT COUNT(*) FROM ${DATABASE}.${PREFIX}log_online WHERE id_spider > 0'`;
$spiders =~ /(\d+)/;
print "spiders.value ".$1."\n";
#Users count
my $users = `$MYSQL $MYSQLOPTS -e 'SELECT COUNT(*) FROM ${DATABASE}.${PREFIX}log_online WHERE id_member > 0'`;
$users =~/(\d+)/;
print "users.value ".$1."\n";
#All count
my $all = `$MYSQL $MYSQLOPTS -e 'SELECT COUNT(*) FROM ${DATABASE}.${PREFIX}log_online'`;
$all =~/(\d+)/;
print "all.value ".$1."\n";

73
plugins/smf/smf_stats Normal file
View file

@ -0,0 +1,73 @@
#!/usr/bin/perl
#
# Munin plugin for members, messages and topics stats over a SMF forum database
#
# Copyright (C) 2013 - digger (http://simplemachines.ru)
# Based on Rowdy Schwachfer (http://rowdy.nl) 's Spotweb plugin
#
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
# Configuration example
#
#[smf*]
#env.mysql /usr/bin/mysql # MySQL binary (optional)
#env.db smf # SMF database (required)
#env.db_prefix smf_ # SMF database prefix(required)
#env.db_user myuser # SMF database user (required)
#env.db_password mypassword # SMF database password (required)
use strict;
my $MYSQL = $ENV{'mysql'} || "/usr/bin/mysql";
my $MYSQLOPTS = "-u " . $ENV{'db_user'} . " -p" . $ENV{'db_password'};
my $DATABASE = $ENV{'db'} || "smf";
my $PREFIX = $ENV{'db_prefix'} || "smf_";
# Output for config
if(defined $ARGV[0] && $ARGV[0] eq 'config') {
print <<EOC
graph_title SMF Statistics
graph_vlabel Number of items
graph_category forum
members.label Total members
graph_scale no
EOC
;
print <<EOC
messages.label Total messages
EOC
;
print <<EOC
topics.label Total topics
EOC
;
exit 0;
}
#Members count
my $members = `$MYSQL $MYSQLOPTS -e 'SELECT value FROM ${DATABASE}.${PREFIX}settings WHERE variable = "totalMembers"'`;
$members =~ /(\d+)/;
print "members.value ".$1."\n";
#Messages count
my $messages = `$MYSQL $MYSQLOPTS -e 'SELECT value FROM ${DATABASE}.${PREFIX}settings WHERE variable="totalMessages"'`;
$messages =~ /(\d+)/;
print "messages.value ".$1."\n";
#Topics count
my $topics = `$MYSQL $MYSQLOPTS -e 'SELECT value FROM ${DATABASE}.${PREFIX}settings WHERE variable="totalTopics"'`;
$topics =~/(\d+)/;
print "topics.value ".$1."\n";