diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Travelynx/Command/munin.pm | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/lib/Travelynx/Command/munin.pm b/lib/Travelynx/Command/munin.pm index d509154..9c53ece 100644 --- a/lib/Travelynx/Command/munin.pm +++ b/lib/Travelynx/Command/munin.pm @@ -40,6 +40,9 @@ sub run {  	my $one_week  = 7 * $one_day;  	my $one_month = 30 * $one_day; +	query_to_munin( 'pending_user_count', +		$db->select( 'users', 'count(*) as count', { status => 0 } ) +		  ->hash->{count} );  	query_to_munin( 'reg_user_count',  		$db->select( 'users', 'count(*) as count', { status => 1 } )  		  ->hash->{count} ); | 
