Splunk Search

Funny Looking Date

andrewkenth
Communicator

I have a search that ends with ... | bucket span=1d _time | stats count first(_time) as Date by UserName but the date is showing up as '138380400' instead of 11/07/2013. Do I need to run a function on the date field to format it?

Tags (2)
0 Karma
1 Solution

somesoni2
Revered Legend

Yes, the _time value you see is the epoch time so you would have to format the date time using one of the following.

...| convert timeformat="%m/%d/%Y" ctime(_time) AS _time

...|eval _time=strftime(_time,"%m/%d/%Y")

View solution in original post

somesoni2
Revered Legend

Yes, the _time value you see is the epoch time so you would have to format the date time using one of the following.

...| convert timeformat="%m/%d/%Y" ctime(_time) AS _time

...|eval _time=strftime(_time,"%m/%d/%Y")
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Event Series: Level up your SOC: Advancing with Splunk Enterprise Security

AI has fundamentally raised the stakes for security operations, and this three-part series is your guide to ...

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

The new SOC4Kafka connector, built on OpenTelemetry, enables the collection of Kafka messages and forwards ...