Skip to content

Commit d1431da

Browse files
author
Brice Figureau
committedOct 23, 2009
Support getting MySQL config settings from a config file
Various perl clean-ups Signed-off-by: Brice Figureau <[email protected]>
1 parent 7d71b6c commit d1431da

File tree

5 files changed

+133
-184
lines changed

5 files changed

+133
-184
lines changed
 

‎README

+16-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Copyright (c) 2008,2009 Brice Figureau <brice.figureau@daysofwonder.com>
44
PREAMBLE
55
========
66

7-
Mysql-snmp is a MySQL Net-SNMP agent written in Perl, and using the Net-Snmp
7+
mysql-agent is a MySQL Net-SNMP agent written in Perl, and using the Net-Snmp
88
Perl bindings.
99

1010
It connects to a mysql server and returns information to Net-SNMP when needed.
@@ -64,15 +64,26 @@ Configure mysql-snmp
6464
Under debian, the daemon can be configured with /etc/default/mysql-snmp.
6565
On all platform, the configuration is done with command line arguments:
6666

67-
-u DBUSER use DBUSER as user to connect to mysql
68-
-p DBPASS use DBPASS as password to connect to mysql
69-
-h|--host HOST connect to mysql HOST
70-
-P|--port PORT port to connect to (default 3306)
67+
-h|--host HOST connect to mysql HOST
68+
-P|--port PORT port to connect to (default 3306)
69+
-u|--user DBUSER use DBUSER as user to connect to mysql
70+
-p|--passwordi DBPASS use DBPASS as password to connect to mysql
71+
-c|--config FILE read MySQL configuration from FILE
72+
7173
-m|--master check master
7274
-s|--slave check slave
7375
--oid OID registering OID
7476
-i|--refresh refresh interval in seconds
7577

78+
You can specify the mysql connection parameters in a config file using my.cnf format, like this:
79+
For example:
80+
81+
[client]
82+
host=dbserver
83+
port=3306
84+
user=monitor
85+
password=secret
86+
7687

7788
OPENNMS
7889
=======

‎debian/manpage.1

-88
This file was deleted.

‎my.cnf

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[client]
2+
host=localhost
3+
#port=3306
4+
user=monitor
5+
password=secret

‎mysql-agent.pl ‎mysql-agent

+112-91
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/perl -w
1+
#!/usr/bin/env perl
22
#
33
#
44
# This program implements a SNMP agent for MySQL servers
@@ -19,13 +19,17 @@
1919
# GNU General Public License for more details.
2020
#
2121
# You should have received a copy of the GNU General Public License
22-
# along with this program. If not, see <http://www.gnu.org/licenses/>.
23-
#
22+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
23+
24+
my $VERSION = "0.7";
25+
$VERSION = eval $VERSION;
2426

2527
use strict;
28+
use warnings;
29+
use Carp;
2630
use Data::Dumper;
2731
use Unix::Syslog qw(:subs :macros);
28-
use Getopt::Long;
32+
use Getopt::Long qw(:config auto_help auto_version no_ignore_case);
2933
use POSIX qw( setsid );
3034
use NetSNMP::OID (':all');
3135
use NetSNMP::agent(':all');
@@ -37,66 +41,62 @@
3741
use DBD::mysql;
3842
use Pod::Usage;
3943

40-
sub my_snmp_handler($$$$);
4144
netsnmp_ds_set_boolean( NETSNMP_DS_APPLICATION_ID,
4245
NETSNMP_DS_AGENT_NO_ROOT_ACCESS, 1 );
4346
my $agent = new NetSNMP::agent( 'Name' => 'mysql', 'AgentX' => 1 );
4447

45-
my $VERSION = "0.6";
46-
4748
my %opt = (
48-
daemon_pid => '/var/run/mysql-agent.pid',
49-
host => 'localhost',
50-
oid => '1.3.6.1.4.1.20267.200.1',
51-
pass => '',
52-
port => '3306',
53-
refresh => '300',
54-
user => 'monitor',
49+
daemon_pid => '/var/run/mysql-agent.pid',
50+
oid => '1.3.6.1.4.1.20267.200.1',
51+
port => 3306,
52+
refresh => 300,
53+
master => 1,
54+
slave => 0,
55+
innodb => 1,
5556
);
5657

57-
Getopt::Long::Configure('no_ignore_case');
5858
GetOptions(
5959
\%opt,
60+
'host|h=s',
61+
'port|P=i',
62+
'user|u=s',
63+
'password|p=s',
64+
'config|c=s',
65+
'master|m!',
66+
'slave|s!',
67+
'innodb|i!',
68+
'oid|o',
69+
'refresh|r=i',
6070
'daemon_pid|daemon-pid=s',
61-
'help|?',
62-
'host=s',
63-
'man',
64-
'master|m',
6571
'no-daemon',
66-
'oid',
67-
'password=s',
68-
'port|P=i',
69-
'refresh|i=i',
70-
'slave',
71-
'user=s',
72+
'man',
7273
'usage',
73-
'verbose|v+',
74-
'version|V',
75-
) or pod2usage(-verbose => 0);
74+
'verbose|v+',
75+
"version" => sub { VersionMessage() },
76+
) or pod2usage( -verbose => 0 );
7677

77-
pod2usage(-verbose => 0) if $opt{usage};
78-
pod2usage(-verbose => 1) if $opt{help};
79-
pod2usage(-verbose => 2) if $opt{man};
78+
pod2usage( -verbose => 0 ) if $opt{usage};
79+
pod2usage( -verbose => 1 ) if $opt{help};
80+
pod2usage( -verbose => 2 ) if $opt{man};
8081

81-
if ( $opt{version} ) {
82-
print "mysql-agent.pl $VERSION by brice.figureau\@daysofwonder.com\n";
83-
exit;
82+
sub VersionMessage {
83+
print "mysql-agent $VERSION by brice.figureau\@daysofwonder.com\n";
8484
}
8585

86-
my $debugging = $opt{verbose};
87-
my $subagent = 0;
88-
my $chk_innodb = 1; # Do you want to check InnoDB statistics?
89-
my $chk_master = 1; # Do you want to check binary logging?
90-
my $chk_slave = 0; # Do you want to check slave status?
86+
my $debugging = $opt{verbose};
87+
my $subagent = 0;
88+
89+
my $dsn = 'DBI:mysql:';
90+
if ($opt{config}) {
91+
$dsn .= "mysql_read_default_file=$opt{config}";
92+
}
93+
else {
94+
$dsn .= join(';', "host=$opt{host}", "port=$opt{port}");
95+
}
9196

92-
my $dsn = "DBI:mysql:host=$opt{host};port=$opt{port}";
9397
my $running = 0;
9498
my $error = 0;
9599

96-
# prototypes
97-
sub daemonize();
98-
sub dolog($$);
99-
100100
openlog( "mysql-agent", LOG_PID | LOG_PERROR, LOG_DAEMON );
101101

102102
daemonize() if !$opt{'no-daemon'};
@@ -105,7 +105,7 @@
105105
my $global_last_refresh = 0;
106106

107107
# enterprises.20267.200.1
108-
my $regOID = new NetSNMP::OID($opt{oid});
108+
my $regOID = new NetSNMP::OID( $opt{oid} );
109109
$agent->register( "mysql", $regOID, \&my_snmp_handler );
110110

111111
# various types & definitions
@@ -278,40 +278,38 @@
278278
}
279279

280280
# takes only numbers from a string
281-
sub tonum ($) {
281+
sub tonum {
282282
my $str = shift;
283283
return 0 if !$str;
284284
return $1 if $str =~ m/(\d+)/;
285285
return 0;
286286
}
287287

288288
# return a string to build a 64 bit number
289-
sub make_bigint_sql ($$) {
290-
my $hi = shift;
291-
my $lo = shift;
289+
sub make_bigint_sql {
290+
my ($hi, $lo) = @_;
292291
return "(($hi << 32) + $lo)";
293292
}
294293

295-
sub max($$) {
296-
my $a = shift;
297-
my $b = shift;
294+
sub max {
295+
my ($a, $b) = @_;
298296
return $a if $a > $b;
299297
return $b;
300298
}
301299

302300
# daemonize the program
303-
sub daemonize() {
301+
sub daemonize {
304302
open STDIN, '/dev/null' or die "mysql-agent: can't read /dev/null: $!";
305303
open STDOUT, '>/dev/null'
306304
or die "mysql-agent: can't write to /dev/null: $!";
307305
defined( my $pid = fork ) or die "mysql-agent: can't fork: $!";
308306
if ($pid) {
309307

310308
# parent
311-
open PIDFILE, '>', $opt{daemon_pidfile}
312-
or die "$0: can't write to $opt{daemon_pidfile}: $!\n";
313-
print PIDFILE "$pid\n";
314-
close(PIDFILE);
309+
open my $pidfile, '>', $opt{daemon_pid}
310+
or croak "Couldn't open $opt{daemon_pid} for writing: $!";
311+
print {$pidfile} "$pid\n" or croak "Couldn't write pid to $opt{daemon_pid}: $!";
312+
close $pidfile or croak "Couldn't close $opt{daemon_pid}: $!";
315313
exit;
316314
}
317315

@@ -326,10 +324,7 @@ sub fetch_mysql_data {
326324
my ( $datasource, $dbuser, $dbpass ) = @_;
327325
my %output;
328326
eval {
329-
my $dbh
330-
= DBI->connect( $datasource, $dbuser, $dbpass,
331-
{ RaiseError => 1, AutoCommit => 1 } );
332-
327+
my $dbh = DBI->connect( $datasource, $dbuser, $dbpass, { RaiseError => 1, AutoCommit => 1 } );
333328
if ( !$dbh ) {
334329
dolog( LOG_CRIT, "Can't connect to database: $datasource, $@" );
335330
return;
@@ -360,7 +355,7 @@ sub fetch_mysql_data {
360355
$status{ $row->[0] } = $row->[1];
361356
}
362357

363-
if ($chk_slave) {
358+
if ($opt{slave}) {
364359
$result = $dbh->selectall_arrayref("SHOW SLAVE STATUS");
365360
foreach my $row (@$result) {
366361

@@ -393,7 +388,7 @@ sub fetch_mysql_data {
393388

394389
# Get info on master logs.
395390
my @binlogs = (0);
396-
if ( $chk_master && $status{'log_bin'} eq 'ON' ) { # See issue #8
391+
if ( $opt{master} && $status{'log_bin'} eq 'ON' ) { # See issue #8
397392
$result = $dbh->selectall_arrayref( "SHOW MASTER LOGS",
398393
{ Slice => {} } );
399394
foreach my $row (@$result) {
@@ -419,7 +414,7 @@ sub fetch_mysql_data {
419414
my @spin_rounds;
420415
my @os_waits;
421416

422-
if ( $chk_innodb && $status{'have_innodb'} eq 'YES' ) {
417+
if ( $opt{innodb} && $status{'have_innodb'} eq 'YES' ) {
423418
my $innodb_array
424419
= $dbh->selectall_arrayref(
425420
"SHOW /*!50000 ENGINE*/ INNODB STATUS",
@@ -628,18 +623,19 @@ sub refresh_status {
628623
my $startOID = shift;
629624
my $now = time();
630625

631-
# Check if we have been called quicker than once every $refresh_interval
632-
if ( ( $now - $global_last_refresh ) < $opt{refresh_interval} ) {
626+
# Check if we have been called quicker than once every $refresh
627+
if ( ( $now - $global_last_refresh ) < $opt{refresh} ) {
633628

634629
# if yes, do not do anything
635630
dolog( LOG_DEBUG,
636631
"not refreshing: "
637632
. ( $now - $global_last_refresh )
638-
. " < $opt{refresh_interval}" )
633+
. " < $opt{refresh}" )
639634
if ($debugging);
640635
return;
641636
}
642-
my ( $oid, $types, $status ) = fetch_mysql_data( $dsn, $opt{user}, $opt{pass} );
637+
my ( $oid, $types, $status )
638+
= fetch_mysql_data( $dsn, $opt{user}, $opt{pass} );
643639
if ($oid) {
644640
dolog( LOG_DEBUG, "Setting error to 0" ) if ($debugging);
645641
$error = 0;
@@ -710,7 +706,7 @@ sub set_value {
710706
}
711707
}
712708

713-
sub my_snmp_handler($$$$) {
709+
sub my_snmp_handler {
714710
my ( $handler, $registration_info, $request_info, $requests ) = @_;
715711
my ($request);
716712

@@ -770,7 +766,7 @@ ($$$$)
770766
dolog( LOG_DEBUG, "finished processing" ) if ($debugging);
771767
}
772768

773-
sub dolog($$) {
769+
sub dolog {
774770
my ( $level, $msg ) = @_;
775771
syslog( $level, $msg );
776772
print STDERR $msg . "\n" if ($debugging);
@@ -783,35 +779,40 @@ ($$)
783779
$SIG{'TERM'} = \&shut_it_down;
784780
$running = 1;
785781
while ($running) {
786-
refresh_status($opt{oid});
782+
refresh_status( $opt{oid} );
787783
$agent->agent_check_and_process(1); # 1 = block
788784
}
789785
$agent->shutdown();
790786

791787
dolog( LOG_INFO, "agent shutdown" );
792788

793789
__END__
790+
794791
=head1 NAME
795792
796793
mysql-agent - report mysql statistics via SNMP
797794
798795
=head1 SYNOPSIS
799796
800-
mysql-agent.pl [options]
797+
mysql-agent [options]
801798
802799
-h HOST, --host=HOST connect to MySQL DB on HOST
800+
-P PORT, --port=PORT port to connect (default 3306)
803801
-u USER, --user=USER use USER as user to connect to mysql
804802
-p PASS, --password=PASS use PASS as password to connect to mysql
805-
-P PORT, --port=PORT port to connect (default 3306)
806-
--daemon-pid=FILE write PID to FILE instead of $default{pid}
807-
-n, --no-daemon do not detach and become a daemon
803+
-c FILE, --config=FILE read mysql connection details from FILE
808804
-m, --master check master
809805
-s, --slave check slave
806+
-i, --innodb read innodb settings
810807
-o OID, --oid=OID registering OID
811-
-i INT, --refresh=INT set refresh interval to INT (seconds)
808+
-r INT, --refresh=INT set refresh interval to INT (seconds)
809+
--daemon-pid=FILE write PID to FILE instead of $default{pid}
810+
-n, --no-daemon do not detach and become a daemon
811+
-v, --verbose be verbose about what you do
812+
812813
-?, --help display this help and exit
814+
--usage display detailed usage information
813815
--man display program man page
814-
-v, --verbose be verbose about what you do
815816
-V, --version output version information and exit
816817
817818
=head1 OPTIONS
@@ -822,6 +823,10 @@ =head1 OPTIONS
822823
823824
connect to MySQL DB on HOST
824825
826+
=item B<-P PORT, --port=PORT>
827+
828+
port to connect (default 3306)
829+
825830
=item B<-u USER, --user=USER>
826831
827832
use USER as user to connect to mysql
@@ -830,17 +835,17 @@ =head1 OPTIONS
830835
831836
use PASS as password to connect to mysql
832837
833-
=item B<-P PORT, --port=PORT>
834-
835-
port to connect (default 3306)
838+
=item B<-c FILE, --config=FILE>
836839
837-
=item B<--daemon-pid=FILE>
840+
read mysql connection details from file FILE.
838841
839-
write PID to FILE instead of $default{pid}
842+
These should be stored in a section named [client]. Eg:
840843
841-
=item B<-n, --no-daemon>
842-
843-
do not detach and become a daemon
844+
[client]
845+
host=dbserver
846+
port=3306
847+
user=monitor
848+
password=secret
844849
845850
=item B<-m, --master>
846851
@@ -850,26 +855,42 @@ =head1 OPTIONS
850855
851856
check slave
852857
858+
=item B<-i, --innodb>
859+
860+
check innodb details
861+
853862
=item B<-o OID, --oid=OID>
854863
855864
registering OID
856865
857-
=item B<-i INT, --refresh=INT>
866+
=item B<-r INT, --refresh=INT>
858867
859868
refresh interval in seconds
860869
861-
=item B<-?, --help>
870+
=item B<--daemon-pid=FILE>
862871
863-
Print a brief help message and exits.
872+
write PID to FILE instead of $default{pid}
864873
865-
=item B<--man>
874+
=item B<-n, --no-daemon>
866875
867-
Prints the manual page and exits.
876+
do not detach and become a daemon
868877
869878
=item B<-v, --verbose>
870879
871880
be verbose about what you do
872881
882+
=item B<--man>
883+
884+
Prints the manual page and exits.
885+
886+
=item B<--usage>
887+
888+
Prints detailed usage information and exits.
889+
890+
=item B<-?, --help>
891+
892+
Print a brief help message and exits.
893+
873894
=item B<-V, --version>
874895
875896
output version information and exit
@@ -881,4 +902,4 @@ =head1 DESCRIPTION
881902
B<mysql-agent> is a small daemon that connects to a local snmpd daemon
882903
to report statistics on a local or remote MySQL server.
883904
884-
=cut
905+
=cut

‎mysql-agent.1.gz

1.08 KB
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.