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
SplunkTrust
SplunkTrust

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!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...