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!

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...