Splunk Search

How to change Date format to abbreviated month?

ajdyer2000
Path Finder

Hi was wondering if possible, how to convert a date field into an abbreviate Month (Jan , Feb, Mar, Apr)

So the 2 fields on the left are existing fields and the ones on the right would be the new ones 

Created  Closed Month_Open Month_Closed
8/27/2020 3:37 9/2/2020 12:00 Aug Sep
10/15/2020 3:31 10/21/2020 12:00 Oct Oct
11/5/2020 3:59 11/10/2020 5:17 Nov Nov
12/3/2020 3:33 4/13/2022 10:48 Dec Apr
Labels (2)
Tags (1)
0 Karma
1 Solution

ajdyer2000
Path Finder

Thank you so much Pickle Rick. That works 😊

View solution in original post

0 Karma

ajdyer2000
Path Finder

Thank you so much Pickle Rick. That works 😊

0 Karma

PickleRick
SplunkTrust
SplunkTrust

Sure. Use eval or fieldformat with strftime()

<your_search>
| eval Month_Open=stftime(Created,"%b")
| eval Month_Closed=strftime(Closed,"%b") 

You have to have your Created and Closed fields as timestamps though so if you have them as strings you'd have to strptime() them to a timestamp first. (I'm wondering if parsing out the month from the original date string and using lookup to get the month name wouldn't be more efficient but that's a completely another story).

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...