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!

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

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

Rounding off the Splunk Dashboard Contest

What does a contest-winning Splunk dashboard look like? In this case, it isn't in a browser tab at all. It ...

A Four Part Event Series: AI + Observability: AI Agents, LLMs, Apps, & Infrastructure

AI + Observability: AI Agents, LLMs, Apps, & Infrastructure The rapid evolution of artificial intelligence ...