You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ElasticSearchStudy/Docs/使用RestClient管理ES集群.http

21 lines
549 B
Plaintext

## 全局变量
//ES服务管理WebApi地址
@baseUrl = https://127.0.0.1:9201
//帐号认证信息:除了用户名:密码形式外也可使用使用其它base64字符串
@accounts = elastic:es-461400
### 请求ES首页
GET {{baseUrl}}?pretty
Content-Type: application/json
Authorization: Basic {{accounts}}
### 请求ES节点信息
GET {{baseUrl}}/_cat/nodes?v
Content-Type: application/json
Authorization: Basic {{accounts}}
### ES健康信息
GET {{baseUrl}}/_cat/health?v
Content-Type: application/json
Authorization: Basic {{accounts}}