From 7d2c1266ea026b08316438911ddf7954954a8984 Mon Sep 17 00:00:00 2001 From: ruflin Date: Wed, 28 Oct 2015 10:05:50 +0100 Subject: [PATCH] Fix #140: Convert offest and line to long fields to prevent overflow --- CHANGELOG.md | 1 + etc/filebeat.template.json | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bc132ffe57..2a68bbe649d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ All documentation about Filebeat can be found here. ### Bugfixes - Omit 'fields' from event JSON when null. #126 +- Make offset and line value of type long in elasticsearch template to prevent overflow #140 ### Added diff --git a/etc/filebeat.template.json b/etc/filebeat.template.json index 503ae78415b..3cf65a8d4bc 100644 --- a/etc/filebeat.template.json +++ b/etc/filebeat.template.json @@ -29,11 +29,11 @@ "index": "analyzed" }, "line": { - "type": "integer", + "type": "long", "doc_values": "true" }, "offset": { - "type": "integer", + "type": "long", "doc_values": "true" } }