Getting Data In

Remove Time from results

pboynton63
Explorer

Since a picture speaks a thousand words here is what my current results get me:

alt text

As you can search my search gets me Date, Leased IP, and Host Name

I would like the Date field to contain only the date i.e 08/24/2016 and not the hour, minute and second. Is there a way to do that?

Thanks for any help you can throw my way,

P.

Tags (2)
0 Karma
1 Solution

sundareshr
Legend

Add this to your search

... | eval Date=strftime(Date, "%x")

View solution in original post

0 Karma

sundareshr
Legend

Add this to your search

... | eval Date=strftime(Date, "%x")
0 Karma

pboynton63
Explorer

I removed the convert piece as you suggested. That does not seem to have worked if I understood you correctly.
alt text

0 Karma

sundareshr
Legend

Instead of the convert, add this

... | eval Date=strftime(_time, "%x") | fields - _time | ...

pboynton63
Explorer

That did the trick! So many thanks to everyone for the help!

0 Karma

pboynton63
Explorer

Thank you Sundareshr,

Here are the results of your suggestion:

alt text

It seems to have taken the date and time, and what I was looking for was just to remove the hour, minute, and second. I would still like the date e.g. 08/24/2016

But I think we are close!

Again my thanks,

P.

0 Karma

MuS
Legend

Skip the convert - after that you have a string and no longer an epoch value which is required by strftime() to work.

cheers, MuS

Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...