Hi guys,
I have some difficulties with Kibana.
My data contains IDs and links:
{
"_index": "debug_sample_data",
"_type": "_doc",
"_id": "rPeEz3cBYzpkMbM6YKCc",
"_version": 1,
"_score": null,
"_source": {
"datum": "2021-02-23",
"id": "Egomotion_D_633",
"links": [
{
"id": "Egomotion_D_Link_0"
},
{
"id": "Egomotion_D_Link_1"
}
]
},
"fields": {
"datum": [
"2021-02-23T00:00:00.000Z"
]
},
"highlight": {
"id": [
"@kibana-highlighted-field@Egomotion_D_633@/kibana-highlighted-field@"
]
},
"sort": [
1614038400000
]
}
Now I want a Pie chart or something similar, where 100% is my count of IDs. and X% is my number of IDs that have links.
Is there a way I can achieve that with Kibana?
The queries I'm using for
-
number of ids:
id: Egomotion -
number of ids with links:
id: Egomotion and links.id: *
Thanks in advance. I couldn't find any solution so far.