I can't get my heatmap to work.
Days of Week at the X-Axis. (7 colums)
Hours of the day at the Y-Axis (24)
Metrics: I use Count, because I want to count how many occurrences are in one hour.
It looks like this at the moment:
But I want something like that:
https://discuss.elastic.co/uploads/short-url/51Qvc5AhgKGsvvqZC0RT4Rc19cR.png
That is my mapping:
{
"properties": {
"IP": {
"type": "ip",
"store": true
},
"address": {
"type": "keyword",
"store": true
},
"addressType": {
"type": "keyword",
"store": true
},
"channel": {
"type": "short",
"store": true
},
"date": {
"type": "date",
"format": "epoch_millis"
},
"location": {
"type": "keyword",
"store": true
},
"rssi": {
"type": "short",
"store": true
},
"ssid": {
"type": "keyword",
"store": true
},
"type": {
"type": "keyword",
"store": true
}
}
}