Linux——Kibana Chinese version

Kibana

  • Kibana is an open source analysis and visualization platform for Elasticsearch, used to search and view interactive data stored in the Elasticsearch index. With Kibana, advanced data analysis and display can be performed through various charts.
  • Kibana makes massive amounts of data easier to understand. It is easy to operate, and the browser-based user interface can quickly create a dashboard (dashboard) to display Elasticsearch query dynamics in real time.
  • Setting up Kibana is very simple. No coding or additional infrastructure is required, Kibana installation can be completed and Elasticsearch index monitoring can be started within minutes.
  • Kibana did not officially support Chinese before 5.6, but after 5.6, it brought modules that support Chinese
  • Official Chinese module path: /usr/share/kibana/node_modules/x-pack/plugins/translations/translations/zh-CN.jso

Download the Chinese package:

[root@efk ]# cd /usr/share/kibana/node_modules/x-pack/plugins/
[root@efk plugins]# git init
初始化空的 Git 版本库于 /usr/share/kibana/node_modules/x-pack/plugins/.git/
[root@efk plugins]# git clone https://github.com/anbai-inc/Kibana_Hanization
正克隆到 'Kibana_Hanization'...
remote: Enumerating objects: 328, done.
remote: Total 328 (delta 0), reused 0 (delta 0), pack-reused 328
接收对象中: 100% (328/328), 3.93 MiB | 20.00 KiB/s, done.
处理 delta 中: 100% (137/137), done.
[root@efk plugins]# cd Kibana_Hanization/
[root@efk Kibana_Hanization]# ls
images  old  README.md  translations
[root@efk Kibana_Hanization]# cd translations/
[root@efk translations]# ls
zh-CN.json

Modify Kibana configuration file

[root@efk translations]# vim /etc/kibana/kibana.yml 

查找删除#

i18n.locale: "zh-CN"
[root@efk translations]# systemctl restart kibana.service 

View

Insert picture description here

Guess you like

Origin blog.csdn.net/weixin_45191791/article/details/107791889