mirror of
https://github.com/derf/travelynx
synced 2024-11-13 08:17:09 +00:00
munin: add pending_user_count
This commit is contained in:
parent
582e8b874c
commit
810945f8bc
1 changed files with 3 additions and 0 deletions
|
@ -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} );
|
||||
|
|
Loading…
Reference in a new issue