我不希望它被标记化。
我通过filebeat发送日志并在logstash中添加过滤器。
在Logstash + Kibana 术语面板的帮助下,我用来更新的 curl 命令是:
curl -XPUT https://localhost:9200/_template/filebeat -d '
{
"template": "filebeat-*",
"mappings": {
"type": {
"properties": {
"message": {
"type": "multi_field",
"fields": {
"message": {
"type": "string",
"index": "analyzed"
},
"untouched": {
"type": "string",
"index": "not_analyzed"
}
}
}
}
}
}'
但回应是:
curl: (35) gnutls_handshake() failed: The TLS connection was non-properly terminated.
我究竟做错了什么?我需要做什么才能达到预期的结果。
编辑:上述 curl 命令的问题是使用https
而不是http
. 但是,它仍然无法正常工作。