hi
how to do a total of these 3 fields please?
| stats count(hang_process_name) as "h", count(crash_process_name) as "c", count(web_app_duration_avg_ms) as "w" by name
I tried [ eval Total=(h+c+w) but it doesnt works
thanks
| stats count(hang_process_name) as "h", count(crash_process_name) as "c", count(web_app_duration_avg_ms) as "w" by name
| fillnull h,c,w
| eval Total = h+c+w
| stats count(hang_process_name) as "h", count(crash_process_name) as "c", count(web_app_duration_avg_ms) as "w" by name
| fillnull h,c,w
| eval Total = h+c+w