Hi,
I've been attempting to parse this json output with logstash and I'm not having any success. Can anyone tell me if it's actually possible:
{
"threadName":"threadX",
"processName":"processX",
"timestamp":"2018-09-10T15:24:42.696Z",
"metrics":[
{
"name":"heap_used",
"metricParams":[
{
"name":"value",
"value":3
},
{
"name":"min",
"value":1
},
{
"name":"max",
"value":3
}
]
},
{
"name":"thread_count_peak",
"metricParams":[
{
"name":"value",
"value":15.716311951405892
},
{
"name":"min",
"value":0.30511587981085886
},
{
"name":"max",
"value":25.26421282572334
}
]
}
],
"tags":[
"jvm",
"someTag"
]
}
I've tried to parse it with multiple nested variations like this:
filter {
json {
source => "metrics"
}
json {
source => "[metrics][metricParams]"
}
}
The output in Kibana:
> "timestamp": "2018-09-10T15:24:42.898Z",
> "threadName": "threadX",
> "offset": 415,
> "metrics": [
> {
> "name": "heap_used",
> "metricParams": [
> {
> "name": "value",
> "value": 69
> },
> {
> "name": "min",
> "value": 68
> },
> {
> "name": "max",
> "value": 70
> }
> ]
> },
> {
> "name": "thread_count_peak",
> "metricParams": [
> {
> "name": "value",
> "value": 57.15107690276084
> },
> {
> "name": "min",
> "value": 46.029165860485556
> },
> {
> "name": "max",
> "value": 110.2139999913411
> }
> ]
> }
> ],
> "@version": "1",
> "process123": "processX"
> },
> "fields": {
> "@timestamp": [
> "2018-09-11T16:10:18.133Z"
> ]
> },
I've attempted to follow the docs but I'm definately not getting it. (unless it's not possible?)
Thanks for you help.