elasticksearch分詞,導致kibana的url出現問題

來源:互聯網
上載者:User

標籤:baidu   就會   需要   rds   tick   har   www   template   zed   

在Kibana的展示頁面中,我們點擊Table的左側欄,發現Elasticsearch中的資料在展示中是正確的資料,比如:agent中www.baidu.com/test,該介面中會正確的顯示為www.baidu.com/test,但是如果我們將該欄位用Term展示出來的話,就會被分為www.baidu.com和test兩組,通過查看CURL並沒有發現其有任何問題,最後找到原因為Elasticsearch將其結果分開給了Kibana,所以Kibana會分開展示。         通過研究,我們資料來源為logstash自動收集過來的,索引是自動產生的,我們並不能去修改索引的Mapping將其設定為不分詞,所以我們只能從其源頭下手,當其建立的時候自動化佈建為不分詞,這時我們就需要配置模板了。代碼如下:
curl -XPUT http://localhost:9200/_template/template_1 -d ‘ {  "template" :"logstash*",  "order" : 0,  "settings" : {    "number_of_shards" : 5  },  "mappings" : {    "fluentd" : {      "properties":{          "request_dir" :{"type":"string","index" :"not_analyzed"},          "http_user_agent" : {"type" : "string","index" :"not_analyzed" }      }    }  }}‘

 

其中重要的是mappings 中的設定,一級一級的按照資料來源正則分解,"index" : "not_analyzed"為不分詞,便於搜尋

elasticksearch分詞,導致kibana的url出現問題

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.