Try this
| eval _time=strptime(last_event,"%Y-%m-%d %H:%M:%S")
| timechart count by user
You need three things to plot a graph, the x-axis field, the y-axis value and the series name - from your example, the x-axis would be the time (you should parse the string to an epoch time strptime()); the series name would be the user name(?), but what would be the y-axis value?
the y-axis value would always be 1 for example.
I just want a chart where I can see (in the last year for example) when's the last event of a users
Try this
| eval _time=strptime(last_event,"%Y-%m-%d %H:%M:%S")
| timechart count by user
Thanks, it worked.
Just for visualization, any way I can make that chart as Bubble Chart?
Because as is it works only as a Column Chart
Bubble charts don't display time very well