The OTHER field represents groupings that are not in the top N most prevalent groups. For example, if you run a search like:
search ... | timechart count by host
the max number of host fields that would be returned by timechart is 10. If you have 25 distinct host s in your dataset, then the 15 least populous host s would be coalesced into OTHER .
There are 2 ways to deal with this:
Disable the use of OTHER by adding a useother=f parameter:
search ... | timechart count by host useother=f
This will generate a field for every host found in the dataset.
Increase the threshold for OTHER grouping:
search ... | timechart count by host where count in top50
This will generate a field for every host , up to 50. If there are more than 50, those excess will then be grouped into OTHER .
There is a similar grouping call NULL , which can be disabled by using the usenull=f option. These parameters are available on both the timechart and chart command. For more information, see the search reference on timechart.
... View more