My data in Splunk looks like so:
geo {
id: 0
internal_name: "TEST"
type: LIST
zip: 1 zip: 2 zip: 3 zip:4 zip: 5 zip: 6 zip: 7 zip: 9 ... etc
description: "TEST"
}
geo {
id: 1
internal_name: "TEST"
type: LIST
zip: 1 zip: 2 zip: 3 zip:4 zip: 5 zip: 6 zip: 7 zip: 9 ... etc
description: "TEST"
}
geo {
id: 2
internal_name: "TEST"
type: LIST
zip: 1 zip: 2 zip: 3 zip:4 zip: 5 zip: 6 zip: 7 zip: 9 ... etc
description: "TEST"
}
geo {
id: 3
internal_name: "TEST"
type: LIST
zip: 1 zip: 2 zip: 3 zip:4 zip: 5 zip: 6 zip: 7 zip: 8
description: "TEST"
}
I want to get the zip numbers all into their own field called zip — if I do it via regex, it only takes the FIRST value not all the others per event. Reading some of the docs, it seems like I need to do something with MV_ADD in my props or transform config files, but I can't find anything that clearly states what I'm suppose to do.
... View more