Ok I found the field name and I tried to do this: | stats count by my_field_name But since the log message has unique timestamp and sometimes unique thread name, I am getting a table with rows for every single log message and with count =1. Is it possible to edit log message to remove that timestamp part and leave only the common part: Instead of looking for count of this: 2023-01-01 01:02:40 INFO - Thread-1 com.example.ClassName : this is log A can we do count for this: this is log A
... View more