mirror of
				https://github.com/juspay/hyperswitch.git
				synced 2025-11-04 14:07:18 +08:00 
			
		
		
		
	chore(analytics): adding status code to connector Kafka events (#3393)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com> Co-authored-by: Sampras lopes <lsampras@pm.me>
This commit is contained in:
		
				
					committed by
					
						
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							d91da89065
						
					
				
				
					commit
					d6807abba4
				
			@ -18,6 +18,7 @@ pub struct ConnectorEvent {
 | 
			
		||||
    created_at: i128,
 | 
			
		||||
    request_id: String,
 | 
			
		||||
    latency: u128,
 | 
			
		||||
    status_code: u16,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
impl ConnectorEvent {
 | 
			
		||||
@ -33,6 +34,7 @@ impl ConnectorEvent {
 | 
			
		||||
        merchant_id: String,
 | 
			
		||||
        request_id: Option<&RequestId>,
 | 
			
		||||
        latency: u128,
 | 
			
		||||
        status_code: u16,
 | 
			
		||||
    ) -> Self {
 | 
			
		||||
        Self {
 | 
			
		||||
            connector_name,
 | 
			
		||||
@ -52,6 +54,7 @@ impl ConnectorEvent {
 | 
			
		||||
                .map(|i| i.as_hyphenated().to_string())
 | 
			
		||||
                .unwrap_or("NO_REQUEST_ID".to_string()),
 | 
			
		||||
            latency,
 | 
			
		||||
            status_code,
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user