Base search is not working for Chart panel
Solution 1:
The timechart
command requires the _time field, which the base search does not provide. The fix depends on the format of the timestamp field. If it's in epoch form then a simple | rename timestamp as _time
in the chart panel will do; otherwise, timestamp will have to be converted into epoch form using | eval _time = strptime(timestamp, "<format string>")
.