1、Kibana4 dashboard无法保存拖动的visualization位置
原因:
程序bug,json部分未能及时保存拖动的情况
解决方法:
手动在设置中,手动编辑dashboard的json,调整排序
参考:https://github.com/elastic/kibana/issues/3328
2、Courier Fetch: shards failed
原因:
查询线程队列不够,导致
解决方法:
编辑elasticsearch.yml,添加threadpool.search.queue_size: 10000
重启elasticsearch即可解决
参考:http://stackoverflow.com/questions/30053967/courier-fetch-shards-failed
3、kibana瓦片图(Tile map)无法使用国内地图
原因:
kibana自带的是地图是openstreetmap,http://www.openstreetmap.org。需要更换成国内地图。
解决方法:
更换为高德地图。修改index.js中的:
https://otile{s}-s.mqcdn.com/tiles/1.0.0/map/{z}/{x}/{y}.jpeg
为
http://webrd0{s}.is.autonavi.com/appmaptile?lang=zh_cn&size=1&scale=1&style=7&x={x}&y={y}&z={z}
说明:网上搜索到内容为style=8,内容空白,经过自己测试,确认style=7可用