Sha256: 910cfe892b6466467907cff6e3fc1f9dfd3d8c6fb8a30cb0595c9d8c78b45bd3
Contents?: true
Size: 1.12 KB
Versions: 13
Compression:
Stored size: 1.12 KB
Contents
{ "template" : "logstash-*", "version" : 60001, "settings" : { "index.refresh_interval" : "5s", "number_of_shards": 1 }, "mappings" : { "_doc" : { "dynamic_templates" : [ { "message_field" : { "path_match" : "message", "match_mapping_type" : "string", "mapping" : { "type" : "text", "norms" : false } } }, { "string_fields" : { "match" : "*", "match_mapping_type" : "string", "mapping" : { "type" : "text", "norms" : false, "fields" : { "keyword" : { "type": "keyword", "ignore_above": 256 } } } } } ], "properties" : { "@timestamp": { "type": "date"}, "@version": { "type": "keyword"}, "geoip" : { "dynamic": true, "properties" : { "ip": { "type": "ip" }, "location" : { "type" : "geo_point" }, "latitude" : { "type" : "half_float" }, "longitude" : { "type" : "half_float" } } } } } } }
Version data entries
13 entries across 13 versions & 2 rubygems