Getting Data In

How do I input data event and fields?

ichesla1111
Path Finder

Hello,

I am inputting a file into Splunk showing the computers system information extracted from the command prompt. The data file I am inputting input Splunk looks like the first photo below, where I want the fields to be set as the values in the first column (circled in red) and their field values equal to their corresponding output value.

ichesla1111_3-1671134845877.png

 

YETTT, when adding it to Splunk, it breaks down the system information file into three events (instead of 1), see image below.

How do I merge these three events into one (match the text file uploaded) and set the fields equal to the systems characteristics seen in the first column (circled in blue)?

ichesla1111_0-1671134493024.png

 

Labels (2)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Welcome to the fun world of GDI (Getting Data In)!

If you're getting three events when you should be getting one then your line breaking needs to be adjusted.  Try

LINE_BREAKER = ([\r\n])Host Name:

Extracting fields from the input is fairly simple with a series of EXTRACT statements.  Don't try to do the whole thing in one go because that will drive you mad and will break too easily. (Clever people with a transform that will do the extractions are welcome to chime in!)

EXTRACT-hostname = Host Name:\s+(?<HostName>\S+)
EXTRACT-osname = OS Name:\s+(?<OSName>.*$)
<<and so on>>

And to fix that warning about timestamp extraction, put this in props.conf

DATETIME_CONFIG = CURRENT
---
If this reply helps you, Karma would be appreciated.
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, ...