index="redis" sourcetype="csv" total_commands_processed="*" | timechart span=5m total_commands_processed
In the search command above, I want to display value of field "total_commands_processed", anyone can help
Try something like this
index="redis" sourcetype="csv" total_commands_processed="*" | timechart span=5m max(total_commands_processed) as total_commands_processed
Try something like this
index="redis" sourcetype="csv" total_commands_processed="*" | timechart span=5m max(total_commands_processed) as total_commands_processed