Hello Sir, Based on the topic, I am trying to fetch the first time and the last time an error occurred in application logs, and thus used following query: - index="dummy" (search condition) |rex ...(?<error>.*?)...|stats count, min(_time), max(_time) by error I got for columns in results: error, count, min(_time) and max(_time). However, in column min(_time) and max(_time) I am getting values like: - 1631484056.103, 1631501959.541 respectively. Thus, I need your help to convert results of the two columns in readable format. Thank you
... View more