ELK练习
Posted studybrother
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ELK练习相关的知识,希望对你有一定的参考价值。
1.ELK练习
PUT s3/_doc/1 { "mappings" : { "doc" : { "properties" : { "name" : { "type" : "text", "index":false, "fields" : { "keyword" : { "type" : "keyword", "ignore_above" : 256 } } }, "age" : { "index":false, "type" : "long" }, "desc" : { "type" : "text", "fields" : { "keyword" : { "type" : "keyword", "ignore_above" : 128, "copy_to":["t1", "t2"] } } }, "tags" : { "type" : "text", "fields" : { "keyword" : { "type" : "keyword", "ignore_above" : 128, "copy_to":["t1", "t2"] } } }, "info" : { "properties":{ "addr":{ "type":"text" }, "tel":{ "type":"long" } } }, "sex" : { "type" : "text", "fields" : { "keyword" : { "type" : "keyword", "ignore_above" : 256 } } } } } }, "settings": { "number_of_shards": 3, "number_of_replicas": 3 } } GET s3/_doc/1
以上是关于ELK练习的主要内容,如果未能解决你的问题,请参考以下文章
Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段