Splunk Search

How to extract the month from date field in string?

srinadh
New Member

I have a date field in a string with the format as mn/day/year. I need to extract the month from the same. Can someone help on this issue?

0 Karma

chrishartsock
Path Finder

The best way I have found to do this is convert field to epoch time, then just pull the month out of that. For example:

| eval epochField=strptime(field, "%m/%d/%Y")
| eval month=strftime(epochField, "%B")

The syntax will vary somewhat based on the exact format of the date and the exact format you want the month in. Refer to this document: http://docs.splunk.com/Documentation/Splunk/6.6.0/SearchReference/Commontimeformatvariables

0 Karma

cmerriman
Super Champion

you can combine them into one eval, as well.

| eval month=strftime(strptime(field, "%m/%d/%y"), "%B")
0 Karma

woodcock
Esteemed Legend

Like this:

... | rex field=YourFieldHere "(^?<Month>[^\/]+)"
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...