Elasticsearch Tutorial: Installation of the Bigdesk Plugin

The Bigdesk plugin is a cluster monitoring tool for Elasticsearch. It can be used to view various states of the ES cluster, such as CPU, memory usage, index data, search conditions, number of http connections, etc.

First, let's download the installation package of Bigdesk. The download path is as follows: the size is about 300kb. Download address: https://github.com/hlstudio/bigdesk

解压-- 
unzip bigdesk-master.zip

cd /bigdesk-master/_site

nohub python -m SimpleHTTPServer &   ------> 启动Web服务器,默认是8000端口

Verify, see if port 8000 is started, netstat -antlp, verify that the start is successful.
insert image description here

The service starts normally, so let's log in to the browser to see if we can open the plug-in? Found to start normally.

insert image description here

Click on the chart with five stars on the screen, which indicates the status of the node. Is the meaning of the master node. Indicates that an ES node information has been identified in the cluster. Then let's take a look at the status interface of its monitoring cluster

insert image description here

Guess you like

Origin blog.csdn.net/a772304419/article/details/132391155