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.