Skip to content

timeline_map插件安装与使用方法

史东杰 edited this page May 26, 2017 · 2 revisions

timeline_map是用echarts map开发的一个kibana插件,主要功能是可以查询时间范围每个时间点各省市统计结果趋势。省份字段可以支持中文与拼音。该插件兼容kibana 5.2.0版本,其他版本大家可以修改源码中版本兼容。

安装方法

在kibana安装目录

cd node/bin
mv npm npm.bak
ln -s ../lib/node_modules/npm/bin/npm-cli.js npm
cd ../..
vim package.json
在engines配置上面增加echarts
"dependencies": {
     "echarts": "3.4.0"
  },
  "engines": {
    "node": "6.9.0"
  }
node/bin/npm update
bin/kibana-plugin install https://github.com/hivefans/timeline_map/files/1030552/timeline_map.1.0.1.zip

使用方法

安装插件后在kibana的 Visualize 中选择 Echarts timeline map图标,选择需要统计的索引表 metrics aggregation中选择需要聚合的字段,buckets中选择X-Axis ==》Aggregation中选择Date Histogram,field中选择日期字段,interval中可以按照需要定义, 点击 Add sub-buckets,选择 Split Area,在Sub Aggregation中选择 Terms ,field中选择索引表中的省份字段,size根据需要定义,最后点击上边的 蓝色播放按钮 Apply Changes,就可以看到生成的时间轴趋势省市地图。 (注: 省份字段中格式为 北京 山东 辽宁 河北 ,拼音格式为 beijing shandong liaoning hebei)

ScreenShot

Clone this wiki locally