Kibana操作ElasticSearch
程序员文章站
2022-07-06 10:46:49
...
#所有index
GET _cat/indices?v
#put创建index和type
PUT /索引名
{
"mappings": {
"properties":{//属性
"username":{"type":"text"},
"age":{"type":"long"}
}
}
}
#post创建index和type
POST /索引名/_doc
{
"properties": {
"username": {"type": "text"},
"age": {"type": "long"}
}
}
#查看type
GET /索引名/_mapping
#增加一条数据需要指定id
PUT /索引名/_doc/id值
{
"username":"wyq",
"age":15
}
#增加一条数据不需要指定id
POST /索引名/_doc
{
"username":"wyq",
"age":15
}
#查询数据
GET /索引名/_doc/1
#删除数据
DELETE /索引名/_doc/id值
#更新数据
POST /索引名/_doc/id值/_update
{
"doc":{
"age":11
}
}