I'd like to calculate K/D ratio for the game Insurgency.
it game battery iphone it hot
I have two searches that can calculate #kills and number of deaths #killer
I'd like to calculate the ration of K v. D's.
index=insurgency sourcetype="insurgency" killed
| rex "killed \"(?<killed>.*?)<"
| rex ":\s+\"(?<killer>.*?)<"
| stats count by killer
I'd like the calculate the ration of Kills/Deaths. Any suggestions?
Read More:
index=insurgency sourcetype="insurgency" killed
| rex "killed \"(?<killed>.*?)<"
| rex ":\s+\"(?<killer>.*?)<"
| top killer