Our step-by-step guide to create a pie chart visualisation in Kibana.
Learn how we at reelyActive use Kibana pie charts to compare the relative activity of rooms/zones and their occupants.
reelyActive open source software with Elasticsearch and Kibana.
In order for there to be data to visualise, the reelyActive software must also have collected and written raddec data to Elasticsearch.
Create a pie chart in Kibana with the default settings.
Open Kibana and then:
The default settings will result in a pie chart with just one bucket being generated, similar to that below. The next step will be to define a meaningful set of metrics and buckets.
Define a meaningful set of metrics and buckets to compare zone performance
In the pie chart editor, configure the Metrics as indicated below:
Then configure the Buckets as indicated below:
The pie chart should now include slices that provide a visualization of the occupancy percentage of each room.
The basic pie chart visualization is complete. It looks friendly and smart, but without information it communicates anything meaningful. The next step explains how to customize the chart to get information and values.
Select pretty colours and more!
The color of the pie chart can be changed by clicking directly on the color of each slice on the right side of the chart. Then, to get information follow the next steps.
Open Options tab and then:
This visualization can be combined with other visualizations as part of a space occupancy dashboard, such as that below.
GET raddec/_search
{
"size": 0,
"aggs": {
"2": {
"terms": {
"field": "receiverId.keyword",
"size": 5,
"order": {
"1": "desc"
}
},
"aggs": {
"1": {
"cardinality": {
"field": "transmitterId.keyword"
}
}
}
}
},
"query": {
"match_all": {}
}
}
For our innovation of making physical spaces searchable like the web.
Create other visualizations, or continue exploring our open architecture and all its applications.