| makeresults | eval _raw="{
\"timeStamp\": \"2024-02-29T10:00:00.673Z\",
\"collectionIntervalInMinutes\": \"1\",
\"node\": \"plgiasrtfing001\",
\"inboundErrorSummary\": [
{
\"name\": \"400B...
See more...
| makeresults | eval _raw="{
\"timeStamp\": \"2024-02-29T10:00:00.673Z\",
\"collectionIntervalInMinutes\": \"1\",
\"node\": \"plgiasrtfing001\",
\"inboundErrorSummary\": [
{
\"name\": \"400BadRequestMalformedHeader\",
\"value\": 1
},
{
\"name\": \"501NotImplementedMethod\",
\"value\": 2
},
{
\"name\": \"otherErrorResponses\",
\"value\": 1
}
]
}|
{
\"timeStamp\": \"2024-02-29T10:00:00.674Z\",
\"collectionIntervalInMinutes\": \"1\",
\"node\": \"plgiasrtfing001\",
\"inboundErrorSummary\": [
{
\"name\": \"400BadRequestMalformedHeader\",
\"value\": 10
},
{
\"name\": \"501NotImplementedMethod\",
\"value\": 5
},
{
\"name\": \"otherErrorResponses\",
\"value\": 6
}
]
}"
| makemv _raw delim="|"
| rename _raw as raw
| mvexpand raw
| rex field=raw "timeStamp\"\: \"(?<_time>[^\"]+)"
| rename raw as _raw
```Below is the SPL you need potentially```
| spath inboundErrorSummary{}
| mvexpand inboundErrorSummary{}
| spath input=inboundErrorSummary{}
| chart values(value) over _time by name