diff options
Diffstat (limited to 'lib/Travelynx/Command')
| -rw-r--r-- | lib/Travelynx/Command/munin.pm | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/lib/Travelynx/Command/munin.pm b/lib/Travelynx/Command/munin.pm index a2191f8..a285782 100644 --- a/lib/Travelynx/Command/munin.pm +++ b/lib/Travelynx/Command/munin.pm @@ -71,7 +71,11 @@ sub run {  	query_to_munin( 'polylines',  		$db->select( 'polylines', 'count(*) as count' )->hash->{count} );  	query_to_munin( 'traewelling_pull', -		$db->select( 'traewelling', 'count(*) as count', { pull_sync => 1 })->hash->{count} ); +		$db->select( 'traewelling', 'count(*) as count', { pull_sync => 1 } ) +		  ->hash->{count} ); +	query_to_munin( 'traewelling_push', +		$db->select( 'traewelling', 'count(*) as count', { push_sync => 1 } ) +		  ->hash->{count} );  	query_to_munin(  		'polyline_ratio',  		$db->query( | 
