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!

.conf24 | Day 0

Hello Splunk Community! My name is Chris, and I'm based in Canberra, Australia's capital, and I travelled for ...

Enhance Security Visibility with Splunk Enterprise Security 7.1 through Threat ...

(view in My Videos)Struggling with alert fatigue, lack of context, and prioritization around security ...

Troubleshooting the OpenTelemetry Collector

  In this tech talk, you’ll learn how to troubleshoot the OpenTelemetry collector - from checking the ...