Getting Data In

AM PM being ignored by TIME_FORMAT in props.conf

phoenixdigital
Builder

Hi All,

Having an issue importing the following data.

UID, In Date, Update Time, Vol, Corr Vol
453,May 1 2012 6:00AM,May 2 2012 3:24PM,133,223.000000000
453,May 1 2012 7:00AM,May 2 2012 3:24PM,104,175.000000000
453,May 1 2012 8:00AM,May 2 2012 3:24PM,90,152.000000000

props.conf

[Flow]
KV_MODE = none
SHOULD_LINEMERGE = false
TIME_FORMAT = %b %d %Y %I:%M%p
TRANSFORMS-filterprices = filterFlowData, filterFlowHeaderRow
REPORT-extracts = FlowDataCsvExtract

transforms.conf

[filterFlowHeaderRow]
REGEX = ^UID(.*)
DEST_KEY = queue
FORMAT = nullQueue

[filterFlowData]
REGEX = (.*)
DEST_KEY = queue
FORMAT = indexQueue

[FlowDataCsvExtract]
DELIMS = ","
FIELDS = "UID", "In Date", "Update Time", "Vol", "Corr Vol"

It appears Splunk is retrieving the first time but completely ignoring the AM PM even though I am specifying it with the %p argument.

Anyone have any clues how to persuade Splunk to not stop parsing the date too soon?

Tags (1)
0 Karma
1 Solution

kristian_kolb
Ultra Champion

Hi,

Two things that MAY improve the situation:

a) Set the TIME_PREFIX = ^\d+,

b) Set the MAX_TIMESTAMP_LOOKAHEAD=18

I have seen (on strftime.net) that %l (lowercase L) should be the 12-hour format without leading zeroes. Other sources claim that %I allows optional leading zeroes. Unfortunately I haven't found a definite list of the supported strftime/strptime formatting that Splunk accepts/recognizes.

Also, on a side note, I don't think you need the filter for the parsing queue, since that is the default. You only need to filter out the header row to the null queue.

Hope this helps,

Kristian

View solution in original post

kristian_kolb
Ultra Champion

Hi,

Two things that MAY improve the situation:

a) Set the TIME_PREFIX = ^\d+,

b) Set the MAX_TIMESTAMP_LOOKAHEAD=18

I have seen (on strftime.net) that %l (lowercase L) should be the 12-hour format without leading zeroes. Other sources claim that %I allows optional leading zeroes. Unfortunately I haven't found a definite list of the supported strftime/strptime formatting that Splunk accepts/recognizes.

Also, on a side note, I don't think you need the filter for the parsing queue, since that is the default. You only need to filter out the header row to the null queue.

Hope this helps,

Kristian

phoenixdigital
Builder

Thanks for the tip it seems the TIME_PREFIX did the trick and its picking up the AM PM now.

I tested both %I and %l (lowercase L) and both behaved in the same manner.

Good to know about the filter as well. Nothing better than simplifying things.

Thanks again

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Event Series: Level up your SOC: Advancing with Splunk Enterprise Security

AI has fundamentally raised the stakes for security operations, and this three-part series is your guide to ...

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

SOC4Kafka - New Kafka Connector Powered by OpenTelemetry

The new SOC4Kafka connector, built on OpenTelemetry, enables the collection of Kafka messages and forwards ...