Hello.
I'm trying to execute this search:
index = testindex | rex "(<= (?P<senderAddress>.*?) )" | search senderAddress=* | chart dc("messageID") by "senderAddress"
After processing I can see really nice pie chart 🙂 But I also recieve this warning:
These results may be truncated. This
visualization is configured to display
a maximum of 1000 results per series,
and that limit has been reached.
And indeed, I can see only approx. 19k events in the chart, but there should be near 25k. At least, query
index = testindex | rex "(<= (?P<senderAddress>.*?) )" | search senderAddress=* | chart dc("messageID")
returns 25194.
Can you explain me why search results are truncated?
Thanks,
Alex.
... View more