Getting Data In

Parsing dynamic fields when indexing from script?

jm8thew
Engager

I'm new to splunk and I'm trying to import some data from a database that I'd like to have indexed by Splunk. I have a script that returns the info from the database in column name = value pairs. However, some of the column names and values have spaces in them, which seem to mess with Splunk's ability to extract field names. Putting quotes around the column name and value didn't work. Replacing spaces with underscores works, but that is not an ideal solution.

Using the MySQL Connector app I'm able to view the database as it is, but I can't maintain historical data.

So how does Splunk decide what is a field and what isn't beyond simple field=value pairs?

Can I do something so that it will accept spaces in the field names from the script data?

Can I change the way my script outputs data (currently columnname=value for every row) so that it captures the column name and values properly?

Is there a way to use the MySQL Connector app for monitoring changes in my database?

Thanks

Tags (1)
0 Karma

martin_mueller
SplunkTrust
SplunkTrust

Splunk field names cannot contain spaces, like most identifier types you'll find. For example, the following extraction will fail,

  • | rex "foo:'(?<foo field>[^']+)'"

while replacing the space with an underscore will work:

  • | rex "foo:'(?<foo_field>[^']+)'"

Personally, I would consider replacing the spaces with underscores in the script's output to be reasonably good practice.

However, you can write your own field extractions that go beyond Splunk's default key=value behaviour. For example you can use the interactive field extractor available from the event options menu. You still will not be able to get spaces in field names though, you will need to come up with a different name for the field. At that point you might be better off going the underscore way.

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, ...