Splunk Enterprise 7.0.2
Can't get rid of duplicated fields indexed in a json format. I tryied all combinations, in IDX Env and SH Env, both equals, then different, no way AT ALL.
JSON, very simple:
[
{
"name": "Name1",
"id": 1,
"age": 20
}, {
"name": "Name2",
"id": 8,
"age": 30
}, {
"name": "Name3",
"id": 12,
"age": 40
}
]
Props IDX and SH, equal,
[JSON]
INDEXED_EXTRACTIONS = json
SHOULD_LINEMERGE = true
NO_BINARY_CHECK = true
CHARSET=UTF-8
KV_MODE = json
AUTO_KV_JSON = true
Results,
I can't "mvdedup" all fields, also because this is a simple test json, then i'll have to index complex with arrays and hundreds fields...
Solutions? It's getting me mad!!!
Thanks.
... View more