Last active
October 7, 2017 09:41
-
-
Save jittagornp/4a40f17e8830b340f011661c8be4811e to your computer and use it in GitHub Desktop.
Revisions
-
jittagornp revised this gist
Oct 7, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -29,7 +29,7 @@ "index": "analyzed" }, "offset": { "type": "integer", "doc_values": "true" }, "geoip" : { -
jittagornp revised this gist
Oct 7, 2017 . 1 changed file with 47 additions and 49 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,51 +1,49 @@ { "mappings": { "_default_": { "_all": { "enabled": true, "norms": { "enabled": false } }, "dynamic_templates": [ { "template1": { "mapping": { "doc_values": true, "ignore_above": 1024, "index": "not_analyzed", "type": "{dynamic_type}" }, "match": "*" } } ], "properties": { "@timestamp": { "type": "date" }, "message": { "type": "string", "index": "analyzed" }, "offset": { "type": "int", "doc_values": "true" }, "geoip" : { "type" : "object", "dynamic": true, "properties" : { "location" : { "type" : "geo_point" } } } } } }, "settings": { "index.refresh_interval": "5s" }, "template": "filebeat-*" } -
jittagornp created this gist
Oct 7, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,51 @@ { mappings: { _default_: { _all: { enabled: true, norms: { enabled: false } }, dynamic_templates: [ { template1: { mapping: { doc_values: true, ignore_above: 1024, index: "not_analyzed", type: "{dynamic_type}" }, match: "*" } } ], properties: { @timestamp: { type: "date" }, message: { type: "string", index: "analyzed" }, offset: { type: "long", doc_values: "true" }, geoip: { type: "object", dynamic: true, properties: { location: { type: "geo_point" } } } } } }, settings: { index.refresh_interval: "5s" }, template: "filebeat-*" }