美好的一天,我亲爱的互联网伙伴
在这一天,我想知道如何指定 Elasticsearch 映射,或者创建一个。我的目标是知道创建 Elasticsearh 映射的确切方法,因为我见过这样的代码:
PUT _template/packets
{
"mappings": {
"doc": {
"properties": {
"title": { "type": "text" },
"name": { "type": "text" },
"age": { "type": "integer" },
"created": {
"type": "date",
"format": "strict_date_optional_time||epoch_millis"
}
}
}
}
}
但我只是不明白我必须在哪里插入这样的命令,我想知道我应该输入终端还是文件。如果有帮助,我使用的是 Ubuntu 16 x64,并且我已经可以使用 Packetbeat、Metricbeat 和 Filebeat。我的目标是使用 Wireshark、packetbeat 和 Elasticsearch 分析网络数据包,如下所述:https ://www.elastic.co/blog/analyzing-network-packets-with-wireshark-elasticsearch-and-kibana
我向你致以最诚挚的问候。