Splunk Dev

Extract values from a multivalue-field

shoermann
Explorer

I have a multi-value field that contains IP-Adr and MAC-Adr and want to seprate them into single value fields. Sounds easy but the name of the field is 'host.address{@addr}', because of the xml-parsing.

Something like the following doesn't work because of "Error in 'eval' command: The expression is malformed. Expected ).":

index=network_nmap host.address{@addr}=*
| eval test=mvindex(host.address{@addr},0)

What's my way out? Thanks in advance.

Tags (1)
0 Karma
1 Solution

rjthibod
Champion

Have you tried wrapping the field name in single or double quotes.

Like this:

`| eval test=mvindex("host.address{@addr}",0)`

or

`| eval test=mvindex('host.address{@addr}',0)`

View solution in original post

0 Karma

shoermann
Explorer

I just tried it with double quotes but it works with single ones.

0 Karma

rjthibod
Champion

Have you tried wrapping the field name in single or double quotes.

Like this:

`| eval test=mvindex("host.address{@addr}",0)`

or

`| eval test=mvindex('host.address{@addr}',0)`
0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...