1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
#
# Copyright (c) 2008 Aconex. All Rights Reserved.
# Copyright (c) 2004 Silicon Graphics, Inc. All Rights Reserved.
#
# 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 2 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, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
use strict;
use warnings;
use DBI;
use PCP::PMDA qw(pmda_config);
use Time::HiRes qw(gettimeofday);
my $database = 'DBI:mysql:mysql';
my $username = 'dbmonitor';
my $password = 'dbmonitor';
my $response = 'SELECT 1';
my $delay = $ARGV[0]; # delay in seconds between database ping's
$delay = 60 unless defined($delay);
# Configuration files for overriding the above settings
for my $file ( '/etc/pcpdbi.conf', # system defaults (lowest priority)
pmda_config('PCP_PMDAS_DIR') . '/dbping/dbprobe.conf',
'./dbprobe.conf' ) { # current directory (high priority)
eval `cat $file` unless ! -f $file;
}
use vars qw( $pmda $dbh $sth );
sub dbping { # must return array of (response_time, status, time_stamp)
my $before;
if (!defined($dbh)) { # reconnect if necessary
$dbh = DBI->connect($database, $username, $password, undef) || return;
$pmda->log("Connected to database.\n");
undef $sth;
}
if (!defined($sth)) { # prepare SQL statement once only
$sth = $dbh->prepare($response) || return;
}
$before = gettimeofday;
$sth->execute || return;
while (my @row = $sth->fetchrow_array) {
($sth->err) && return;
}
my $timenow = localtime;
print "$timenow\t", gettimeofday - $before, "\n";
}
$dbh = DBI->connect($database, $username, $password, undef) ||
$pmda->log("Failed initial connect: $dbh->errstr\n");
$| = 1; # IMPORTANT! Enables auto-flush, for piping hot pipes.
for (;;) {
dbping;
sleep($delay);
}
=pod
=head1 NAME
dbprobe.pl - database response time and availability information
=head1 SYNOPSIS
dbprobe.pl [ delay ]
=head1 DESCRIPTION
The B<dbprobe.pl> utility is used by pmdadbping(1) to measure
response time from a database. A given query is executed on
the database at the requested interval (I<delay>, which defaults
to 60 seconds). This response time measure can be exported
via the Performance Co-Pilot framework for live and historical
monitoring using pmdadbping(1).
=head1 SEE ALSO
pmcd(1), pmdadbping(1) and DBI(3).
|