Query which dashboard for specific visualize

hi,
i'm searching to list all dashboards which using a specific visualize.

example : "_source": {
"title": "dashboard1",
"panelsJSON":"""[{"size_x":6,"size_y":3,"panelIndex":1,"type":"visualization","id":"AWL8LW....","col":1.......

i'm trying this below but it does not work:
GET .kibana/dashboard/_search
{
"query": {
"term": {
"FIELD": {
[id]: "AWL8LW..."
}
}
}
}
ELK version 5.6.9

An idea ?
Thanks.

i'm finding this solution :

get .kibana/dashboard/_search?q=panelsJSON.id="AWL8LW..."
:grinning:

and this to reduce the result returned :
get .kibana/dashboard/_search?q=panelsJSON.id="AWL8LW..."
{"_source": ["title", "panelsJSON"]}
:sunglasses:

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.