plugin-pg__database_xact: pg__database_xact

File pg__database_xact, 3.8 kB (added by ajaja, 5 years ago)
Line 
1 #!/usr/bin/perl -w
2 # Plugin for monitor postgres connections.
3 #
4 # Licenced under GPL v2.
5 #
6 # Usage:
7 #
8 #       Symlink into /etc/munin/plugins/ and add the monitored
9 #       database to the filename. e.g.:
10 #
11 #       ln -s /usr/share/munin/plugins/pg_datbase__activity \
12 #         /etc/munin/plugins/pg_database_<databasename>_activity
13 #       This should, however, be given through autoconf and suggest.
14 #
15 #       If required, give username, password and/or Postgresql server
16 #       host through environment variables.
17 #
18 #       You must also activate Postgresql statistics. See
19 #       http://www.postgresql.org/docs/7.4/interactive/monitoring-stats.html
20 #       for how to enable this. Specifically, the following lines must
21 #       exist in your postgresql.conf:
22 #
23 #           stats_start_collector = true
24 #           stats_block_level = true
25 #
26 #
27 # Parameters:
28 #
29 #       config   (required)
30 #
31 # Config variables:
32 #
33 #       dbhost     - Which database server to use. Defaults to
34 #                    'localhost'.
35 #       dbname     - Which database to use. Defaults to template1
36 #       dbuser     - A Postgresql user account with read permission to
37 #                    the given database. Defaults to
38 #                    'postgres'. Anyway, Munin must be told which user
39 #                    this plugin should be run as.
40 #       dbpass     - The corresponding password, if
41 #                    applicable. Default to undef. Remember that
42 #                    pg_hba.conf must be configured accordingly.
43 #
44 # Magic markers
45 #%# family=auto
46 #%# capabilities=autoconf
47
48 use strict;
49 use DBI;
50
51 my $dbhost = $ENV{'dbhost'} || '127.0.0.1';
52 my $dbname = $ENV{'dbname'} || 'template1';
53 my $dbuser = $ENV{'dbuser'} || 'postgres';
54 my $dbport = $ENV{'dbport'} || '5432';
55 my $dbpass = $ENV{'dbpass'} || '';
56
57 # Check for DBD::Pg
58 if (! eval "require DBD::Pg;") {
59      exit 1;
60 }
61
62 my $dsn = "DBI:Pg:dbname=$dbname;host=$dbhost;port=$dbport";
63 #print "$dsn\n";
64 my $dbh = DBI->connect ($dsn, $dbuser,
65                         $dbpass,
66                         {RaiseError =>1}) || die "";
67
68
69
70 if (exists $ARGV[0]) {
71     if ($ARGV[0] eq 'autoconf') {
72         # Check for DBD::Pg
73         if (! eval "require DBD::Pg;") {
74              print "no (DBD::Pg not found)";
75              exit 1;
76         }
77        if  ( ! $dbh) {
78             print "no Unable to access Database $dbname on host $dbhost as user $dbuser.\nError returned was: ". $DBI::errstr;
79             exit 1;
80         }
81
82         #is Collects row-level statistics on database activity on?
83         my $sql = "show stats_row_level;";
84         my $sth = $dbh->prepare($sql);
85         $sth->execute();
86         my ($stats_row_level) = $sth->fetchrow();
87         if ( $stats_row_level eq "off" ) {
88            print "no Collects row-level statistics on database activity is off (stats_row_level=off)\n";
89            exit 1;
90         }
91
92         # all is OK
93         print "yes\n";
94         exit 0;
95
96     }
97
98     if ($ARGV[0] eq "config") {
99         print "graph_title PostgreSQL database xact from $dbname\n";
100         print "graph_info PostgreSQL database xact from $dbname\n";
101         print "graph_vlabel Count / \${graph_period}\n";
102         print "graph_category Postgresql \n";
103         print "graph_args --base 1000\n";
104         print "xact_commit.label Commits\n";
105         print "xact_commit.draw LINE2\n";
106         print "xact_commit.type DERIVE\n";
107         print "xact_commit.min 0\n";
108         print "xact_rollback.label Rollbacks\n";
109         print "xact_rollback.draw LINE2\n";
110         print "xact_rollback.type DERIVE\n";
111         print "xact_rollback.min 0\n";
112         exit 0;
113     }
114 }
115
116
117 my $sql_curr = "select xact_commit,xact_rollback from pg_stat_database where datname='$dbname';";
118 my $sth_curr = $dbh->prepare($sql_curr);
119 $sth_curr->execute();
120 my ($curr_xact_commit,$curr_xact_rollback) = $sth_curr->fetchrow();
121 print "xact_commit.value $curr_xact_commit\n";
122 print "xact_rollback.value $curr_xact_rollback\n";