mirror of
				https://github.com/juspay/hyperswitch.git
				synced 2025-10-31 01:57:45 +08:00 
			
		
		
		
	 9df4e0193f
			
		
	
	9df4e0193f
	
	
	
		
			
			Co-authored-by: harsh_sharma_juspay <harsh.sharma@juspay.in> Co-authored-by: Ivor Dsouza <ivor.dsouza@juspay.in> Co-authored-by: Chethan Rao <70657455+Chethan-rao@users.noreply.github.com> Co-authored-by: nain-F49FF806 <126972030+nain-F49FF806@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com> Co-authored-by: akshay.s <akshay.s@juspay.in> Co-authored-by: Gnanasundari24 <118818938+Gnanasundari24@users.noreply.github.com>
		
			
				
	
	
		
			10 lines
		
	
	
		
			285 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			285 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| use router_env::{global_meter, histogram_metric, histogram_metric_u64, metrics_context};
 | |
| 
 | |
| metrics_context!(CONTEXT);
 | |
| global_meter!(GLOBAL_METER, "ROUTER_API");
 | |
| 
 | |
| histogram_metric!(METRIC_FETCH_TIME, GLOBAL_METER);
 | |
| histogram_metric_u64!(BUCKETS_FETCHED, GLOBAL_METER);
 | |
| 
 | |
| pub mod request;
 |