Hi,
Short explanation of my problem: I'm investigating a problem where two file downloads are apparently interrupted prematurely. For convenience's sake, let's assume I have two macros, file1 and file2 matching the downloads. I want a pie chart for both of them.
`file1` |chart count by bytes
`file2` |chart count by bytes
For file1 I get a nice pie chart, where there are the counts for the two most common AND a slice with the label other(30) with the count 30. But for file2 I get a pie slice for each distinct value of bytes. (Hope this is not too unclear)
Two questions:
1) Why is the behaviour for file1 the way it is? I didn't ask for it, but I do like it
2) How can I get the same behaviour for file2? My experiments with rangemap , bins and span puts all the results in ranges like 200000-300000, etc.
Update:
Since I didn't express myself clearly at first, I want to point out that I'm looking for a a way of setting useother to false from the search command itself. I have not included this search in a dashboard or view, so I there is no XML to edit. The reason for my question is simply that I sometimes need to a one-time search for this. This time, I was searching for failed downloads. But since the bytes field can also vary for succesful downloads, it is important for me to see all the count for all the values of bytes, not just the most common ones.
... View more