1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-24 09:57:09 +00:00

Whitespace cleanup

* remove trailing whitespace
* remove empty lines at the end of files
This commit is contained in:
Lars Kruse 2018-08-02 02:03:42 +02:00
parent ef851f0c34
commit 17f784270a
604 changed files with 2927 additions and 2945 deletions

View file

@ -30,7 +30,7 @@
# 'oracle'. Anyway, Munin must be told which user
# this plugin should be run as.
# dbpass - The corresponding password, if
# applicable. Default to undef.
# applicable. Default to undef.
#
# showusers - If set to 1 show usernames and num. of connections.
# Default is not show users (0).
@ -137,9 +137,9 @@ if ( $showusers ) {
$sth->execute();
my $total = 0;
while ( my ($datname,$curr_conn) = $sth->fetchrow_array ) {
print "$datname.value $curr_conn\n";
print "$datname.value $curr_conn\n";
$total = $total+$curr_conn;
}
}
print "total.value $total\n";
} else {
my $sql = "select count(username) from v\$session where username is not null";