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!

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...