Hi, I am trying to create new field values from my json log base on the values that appear under a particular field So here is an example {
"widget": {
"text": [
{
"...
See more...
Hi, I am trying to create new field values from my json log base on the values that appear under a particular field So here is an example {
"widget": {
"text": [
{
"data": "Click here",
"size": 36
},
{
"data": "Learn more",
"size": 37
},
{
"data": "Help",
"size": 38
},
]
}
} So in my environment I currently have got widget{}.text{}.data as a field, however i would like to break it further and have widget{}.text{}.data{}.ClickHere, widget{}.text{}.data{}.Help, widget{}.text{}.data{}.LearnMore as individual fields I ask this because when we have thousands of logs and are looking for certain combinations, we have issues with filtering accurately, doing this will help us find the right combinations Any assistance will be greatly appreciated, Thanks