首页 > 其他分享 >ELK练习

ELK练习

时间:2022-11-14 12:00:41浏览次数:35  
标签:ELK keyword text 练习 ignore above fields type

1.ELK练习

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,keyword,text,练习,ignore,above,fields,type
From: https://blog.51cto.com/u_11182673/5848807

相关文章

  • C++PrimerPlus中文第六版第6章编程练习答案
    1、#include<iostream>usingnamespacestd;intmain(){charch;cout<<"Entertext:\n";while(cin.get(ch)&&ch!='@'){if(isa......
  • #yyds干货盘点# LeetCode 腾讯精选练习 50 题:相交链表
    题目:给你两个单链表的头节点 headA和headB,请你找出并返回两个单链表相交的起始节点。如果两个链表不存在相交节点,返回null。图示两个链表在节点c1开始相交:题目数据......
  • C语言学习--练习--合并两个字符串
    将两个字符串合并追加在一起,类似于python的str1+str2 #include<stdio.h>#include<string.h>#include<stdlib.h>//字符串追加,将两个字符串结合在一起intmain(......
  • 编写程序练习直接、间接、相对、基址变址寻址
    直接寻址方式操作数在存储单元中,指令的操作码之后给出该存储单元的有效地址EA。指令中,EA可以是数值形式,也可以是符号地址形式;例如:MOVAX,[100H];  数值地址必须加方......
  • redhat持久化日志与实战练习
    持久化日志默认情况下,RedHatEnterpriseLinux7将系统日志存储在/run/log/journal中,该日志存储在tmpfs(临时文件系统)上。这意味着在重新启动时,所有存储的信息都将丢失。如......
  • CE软件的使用指南--练习环境
    CE软件的使用指南练习环境     目录一、      软件的下载及环境准备...2二、      练习第二关--精确值扫描...4三、      练习第三......
  • Hive 练习题
    准备数据createtablegulivideo_ori(videoIdstring,uploaderstring,ageint,categoryarray<string>,lengthint,viewsint,ratefloat,ratingsint......
  • k8S中部署Filebeat+ELK日志系统
    一.概述ELK是三个开源软件的缩写,分别表示:Elasticsearch,Logstash,Kibana,它们都是开源软件。新增了一个FileBeat,它是一个轻量级的日志收集处理工具(Agent),Filebeat......
  • C++PrimerPlus中文第六版第5章编程练习答案
    1、#include<iostream>usingnamespacestd;intmain(){inti,j;cout<<"Entertwonumbers:";cin>>i>>j;//cout<<"Sumbetween"<<......
  • #yyds干货盘点# LeetCode 腾讯精选练习 50 题:最小栈
    题目:设计一个支持push,pop,top操作,并能在常数时间内检索到最小元素的栈。实现MinStack类:MinStack()初始化堆栈对象。voidpush(intval)将元素val推入堆栈。voidpop......