Got the answer with the below
Got the answer with the below
sourcetype=access_combined
| eval action = if(isnull(action) OR action="", "Unknown", action)
| bin _time span=40h
| chart count over _time by action
sourcetype=access_combined | eval action = if(isnull(action) OR action="", "Unknown", action) | timechart span=40h count by action
As I mentioned, i need data in row format not in column format to group by multiple fields
timechart span=40h count by action, status
Easiest way is combine those values like:
eval a_s = action . "-".status
| timechart span=40h count by a_s
Otherwise you must start to play with bin + stats/chart/xyseries
r. Ismo