Hello Everyone ,
I'm facing problem in visualization of data in proper way. Now what data i have ?
There are TWO tables
- contains basic information of an organization.
2.contains multiple records which are linked with table 1 records.
Now to store this records in elasticsearch I combined both in one json.
JSON looks like :
{
"zipCode": "",
"address": "",
"phone": "",
"city": " ",
"organization": "",
"state": "",
"source": "",
"email": " ",
"measureCode": [
{
"score": 5,
"code": "",
"measureName": "",
"denominator":5
},
{
"score": 6,
"code": "",
"measureName": "",
"denominator":6
}
]
}
what I've done so far with Visualization :
- I can check how many organization in this particular city or state by using PIE & TABLE chart.
2.I can see which organization and where it is located by using TILE MAP.
Now what I'm looking :
- I want to see score of each organization and you can see there is multiple score with respect to there measure name. How can i visualize this data ?
- Is it possible to add custom map in kibana ? because i want to do some drop down actions.
- how to add custom charts or modify kibana charts ? tutorial links preferred.
Also if any suggestion (changes) related JSON structure would be thankful.