Hello all, 
I am really new to Splunk and cannot for the life of me figure this one out.
Unfortunately, Googling around for answers has not been helpful. 
I have records which contain two important fields initiator_country and responder_country.
I am interested in observing records with rare combinations of the two fields. 
There are 3 possible values for initiator_country and responder_country, so 9 total combinations.
I would like to create a 3rd field for each record indicating which initiator_country - responder_country 
combination the record belongs to, but I am not really sure where I should start. 
Thank you very much!
 
					
				
		
Is this what you mean?
... | eval newField = initiator_country . "-" . responder_country
 
					
				
		
Is this what you mean?
... | eval newField = initiator_country . "-" . responder_country
Wow! Thank you very much!
I just tested it and it worked!
