简介 目录 评价 推荐
  • VicentZ 2023-07-03

    GET /accounts/_search

    {

      "query": {"match_all": {}}

    }


    GET /accounts/_search?q=Doe



    GET /accounts/_search?q=name:Lily


    GET /accounts/_search

    {

      "query":{

        "match":{

          "name":"Lily"  

        }

      }

    }


    GET /accounts/_search

    {

      "query": {

        "bool": {

          "must": [

            {

              "match": {

                "name": "Lily"

              }

            }

          ],

          "should": [

            {

              "match": {

                "lastname": "Doe"

              }

            }

          ],

          "must_not": [

            {

              "match": {

                "job_desscription": 111

              }

            }

          ]

        }

      }

    }

    0赞 · 0采集
  • VicentZ 2023-07-03

    新版语句:


    POST /accounts/_doc/1

    {

      "name":"John",

      "lastname":"Doe",

      "job_desscription":"Systems administrator and Linux specialit"

    }


    GET /accounts/_doc/1


    POST /accounts/_update/1

      "doc":{

        "name":"Tom"

      }

    }

    DELETE /accounts/_doc/1

    0赞 · 0采集
  • guaguaerhao 2023-05-26

    head -n 2 /Library/software/nginx/logs/access.log | ./filebeat -e -c nginx.yml



    nginx.yml 文件内容

    filebeat.prospectors:

    - input_type: stdin

    output.console:

    pretty: true

    0赞 · 0采集
  • guaguaerhao 2023-05-26

    http://img3.mukewang.com/64707c0f00016f0a11830402.jpg

    本地集群搭建

    0赞 · 0采集
  • 慕工程534574 2022-05-18

    beats output


    0赞 · 0采集
  • 慕工程534574 2022-05-18

    beats 结构图


    0赞 · 0采集
  • 物有本木 2021-11-27

    提取转化数据,数据处理流。

    0赞 · 0采集
  • 物有本木 2021-11-27

    logstash提取转化数据,数据处理流。

    0赞 · 0采集
  • 物有本木 2021-11-27

    简介,支持哪些网络包

    0赞 · 0采集
  • 物有本木 2021-11-27

    Packetbeat简介,支持哪些包

    0赞 · 0采集
  • 物有本木 2021-11-27

    Packetbeat简介

    0赞 · 0采集
  • 物有本木 2021-11-27

    beats组成,类型


    0赞 · 0采集
  • 物有本木 2021-11-26

    kibana

    0赞 · 0采集
  • 物有本木 2021-11-26

    快速启动集群

    0赞 · 0采集
  • Mir_Ver 2021-11-12

      

    方案之logstash

    input { beats { port => 5044 }}

    filter {

    if "search" in [request]{

    grok { match => { "request" => ".*\n\{(? <query_ body>.*)"}}grok { match => { "path" => "V(? <index> .*)V. search"}}

    if [index] {} else { mutate { add_ field => { "index" => "All"} }}mutate {update => { "query. body" => "{%{query. body}}}}

    output {

    if "search" in [request]{

    elasticsearch{ hosts => "127.0.0.1:8200" }

    }}

     

    0赞 · 0采集
  • Mir_Ver 2021-11-12

    方案 ◆Production Cluster

    ◆Elasticsearch http://127.0.0.1:9200

    ◆Kibana http://127.0.0.1:5601

    ◆Monitoring Cluster

    ◆Elasticsearch http://127.0.0.1:8200

    ◆ bin/elasticsearch -Ecluster.name=sniff search -Ehttp:port=8200 -

    Epath.data=sniff

    ◆Kibana http://127.0.0.1:8601

    ◆bin/kibana -e http://127.0.0.1:8200 -p 8601

    ◆Production 与Monitoring不能是一个集群 ,否则会进入抓包死循环

    0赞 · 0采集
  • 慕尼黑0524431 2021-04-28

    kibana常用功能

    0赞 · 0采集
  • 慕沐8425108 2020-11-18
    哈哈
    截图
    0赞 · 0采集
  • 慕粉0958594576 2020-10-06

    query 示例

    截图
    0赞 · 0采集
  • 慕粉0958594576 2020-10-06

    elastic search query

    截图
    0赞 · 0采集
  • 慕仙7345347 2020-08-27

    我是test

    0赞 · 0采集
  • yo_笠斌 2020-08-26

    本地集群方式

    截图
    0赞 · 0采集
  • car 2020-07-21

    127.0.0.1:8200/_cluster/stats

    截图
    0赞 · 0采集
  • car 2020-07-21

    127.0.0.1:8200/_cat/nodes

    截图
    0赞 · 0采集
  • car 2020-07-21

    bin/elasticsearch -Ehttp.port=8200 -Epath.data=node2

    bin/elasticsearch -Ehttp.port=7200 -Epath.data=node2

    截图
    0赞 · 0采集
  • car 2020-07-21

    bin/elasticsearch-cli.bat -Ehttp.port=19200

    截图
    0赞 · 0采集
  • 地主家也没有余粮啊 2020-06-09
    elasticsearch查询入门


    截图
    0赞 · 0采集
  • 地主家也没有余粮啊 2020-06-09
    CURD等相关操作

    http://img2.mukewang.com/5edf75130001c5a205170444.jpg

    http://img1.mukewang.com/5edf75130001fe3b12200598.jpg


    0赞 · 0采集
  • 地主家也没有余粮啊 2020-06-09
    常用术语 - ElasticSearch

    http://img3.mukewang.com/5edf6faf00019b4210320505.jpg

    截图
    0赞 · 0采集
  • 地主家也没有余粮啊 2020-06-09
    常用配置-kibana


    截图
    0赞 · 0采集
数据加载中...
开始学习 免费