elastic-head视图插件

目录

一.简介

官网

ealsticsearch只是后端提供各种api,可以添加索引查看数据等,但需要在命令行操作,elasticsearch-head是一个基于node.js的前端工程,可以提供WEB方式的信息查看和各种API的视图化操作。

二.安装

1.nodejs安装

wget https://nodejs.org/dist/v10.9.0/node-v10.9.0-linux-x64.tar.xz
tar xf  node-v10.9.0-linux-x64.tar.xz

echo 'PATH=$PATH:/usr/local/node-v10.9.0-linux-x64/bin' >> /etc/profile
source /etc/profile

2.phantomjs安装配置

Wget https://github.com/Medium/phantomjs/releases/download/v2.1.1/phantomjs-2.1.1-linux-x86_64.tar.bz2
yum -y install bzip2
tar –jxvf  phantomjs-2.1.1-linux-x86_64.tar.bz2

echo 'export PATH=$PATH:/usr/local/phantomjs-2.1.1-linux-x86_64/bin' >> /etc/profile
source /etc/profile

3.elasticsearch-head安装

git clone git://github.com/mobz/elasticsearch-head.git
cd elasticsearch-head
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install

4.启动

npm run start
open http://localhost:9100/

5.elasticsearch-head发现主机 并连接
修改elasticsearch.yml并重启

http.cors.enabled: true
http.cors.allow-origin: "*"

三.使用

状态显示

仔细观察,我们会发现客户端默认连接的是我们elasticsearch的默认路径。而此时elasticsearch服务未启动,所以集群健康值是未连接

集群健康值的几种状态如下:
绿颜色,最健康的状态,代表所有的分片包括备份都可用
黄颜色,基本的分片可用,但是备份不可用(也可能是没有备份)
红颜色,部分的分片可用,表明分片有一部分损坏。此时执行查询部分数据仍然可以查到,遇到这种情况,还是赶快解决比较好
灰色,未连接到elasticsearch服务

集群概览

1.此时,我们启动elasticsearch服务,重新刷新浏览器,发现集群健康值变成了绿色,代表集群很健康,如下:
elastic-head视图插件

2.五星代表是主节点,圆代表是从节点,我们这个测试环境有两个索引products和artices,索引详细信息可点击某个索引,查看该索引的所有信息,包括mappings、setting等等
elastic-head视图插件

3.索引
elastic-head视图插件

4.点击新建索引,可以新建索引
elastic-head视图插件

5.输入索引名称,分片数,副本数量,可以新建成功,成功会有如下提示:
elastic-head视图插件

6.数据浏览,可查看所有索引、类型、字段信息
elastic-head视图插件

7.基本查询,可根据查询条件,搜索过滤找到自己需要的索引数据
elastic-head视图插件

8.复合查询,在这个页签,可以使用json进行复杂的查询,也可发送put请求新增及跟新索引,使用delete请求删除索引等等
elastic-head视图插件

上一篇:python-解决线性最小二乘的最快方法


下一篇:Scipy:optimize.fmin和optimize.leastsq之间的区别