Splunk Search

Does Splunk have a way to ingest this kind of format?

ejmin
Path Finder

Hi does anyone know how to ingest this in splunk basically this format is not a csv type but a special one.
The ff. below are the actual format of my data.

"Brand,X"
"Store,0000"
"Date,03/29/2019"
"Amount,1234"
"Type,P"

Is there a way to transpose this in splunk like the function of an excel file.

0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi ejmin,
let me understand: do you have these information in one file, but in the same file have more groups like this or only one?
then the sequence of information is always the same?

If the sequence is always the same and you have more groups in the same file, you could use a props.conf like this:

[my_sourcetype]
TIME_PREFIX = \"Date,
TIME_FORMAT = %m/%d%Y
BREAK_ONLY_BEFORE = \"Brand,

Bye.

Giuseppe

View solution in original post

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi ejmin,
let me understand: do you have these information in one file, but in the same file have more groups like this or only one?
then the sequence of information is always the same?

If the sequence is always the same and you have more groups in the same file, you could use a props.conf like this:

[my_sourcetype]
TIME_PREFIX = \"Date,
TIME_FORMAT = %m/%d%Y
BREAK_ONLY_BEFORE = \"Brand,

Bye.

Giuseppe

0 Karma

ejmin
Path Finder

Yes you can say, that it is static but my actual problem is how those BRAND DATE become a column and the X and 06/01/2019 become a values because currently the ingestion only consist of Event and Time

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi ejmin,
if you have an event, you can extract the fields using the field extractor or a regex.
In the following example I use rex command, but you can use these regexes to extract fields.

index=my_index
| rex "\"Brand,(?<Brand>[^\"]+)\"\s+\"Store,(?<Store>[^\"]+)\"\s+\"Date,(?<Date>[^\"]+)\"\s+\"Amount,(?<Amount>[^\"]+)\"\s\"Type,(?<Type>[^\"]+)\""
| table Brand Store Date Amount Type

You can test it at https://regex101.com/r/BhIxvQ/1 .

Bye.
Giuseppe

0 Karma

ejmin
Path Finder

Ohh I get it thanks. That thing works

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!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...