Hi all,
I have index with following mapping
{ "mappings": { "properties": { "@timestamp": { "type": "date" }, "kpi-data": { "type": "nested", "properties": { "id": { "type": "text" }, "name": { "type": "text" }, "value": { "type": "double" } } }, "project_key": { "type": "text" } } } }
I want to create stat panel. Each box need to display the latest value of document with kpi-data.id:performance-*. The header of each box display the kpi-data.name.
I try to do lucene query project-key:"My Project" AND kpi-data.id:performance-*
but it’s only showing 0 value.
Thank You