I want to write the query which will number of count the event occurred and time taken for that. This is the log - log: 2024-07-01 16:57:17.022 INFO 1 --- [nio-8080-exec-6] xyztask : FILE_TRANSFER | Data | LOGS | Fetched count:345243 time:102445ms time: 2024-07-01T16:57:17.022583728Z I want result like - | count | time | | 2528945 | 130444 | Query that I am writing base search | stats count by count | stats count by time | table count time For stats count by count I am getting error - Error in 'stats' command: The output field 'count' cannot have the same name as a group-by field Query isn't right, correct solution would be helpful. Also tried different queries different ways.
... View more