Hi,
I'm still in the beginning of understanding how to use logstash.
I have this structure in my event's JSON.
"testDetails":[
    {
        "placeholder":"NO_SECURE_FLAG_SET",
        "values":{…some more stuff…}
    },
    {
        "placeholder":"NO_HTTPONLY_FLAG_SET",
        "values":{…some more stuff…}
    },
    …maybe more placeholders…
]
Is there any filter which will allow me to convert this to
"testdetails":[ "NO_SECURE_FLAG_SET", "NO_HTTPONLY_FLAG_SET", …the other "placeholder" values. ]