-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cherry-pick #7991 to 6.x: Add tag "truncated" to "log.flags" if incom…
…ing line is longer than configured limit (#8165) * Add tag "truncated" to "log.flags" if incoming line is longer than configured limit (#7991) A new field is added to store the flags of an event named "log.flags". If a message is truncated, "truncated" flag is added to the list. Example event with "truncated" flag: { "@timestamp": "2018-08-16T13:00:46.759Z", "@metadata": { "beat": "filebeat", "type": "doc", "version": "7.0.0-alpha1" }, "host": { "name": "sleipnir" }, "source": "/home/n/test.log", "offset": 33, "log": { "flags": [ "truncated" ], }, "message": "test line", "prospector": { "type": "log" }, "input": { "type": "log" }, "beat": { "hostname": "sleipnir", "version": "7.0.0-alpha1", "name": "sleipnir" } } Closes #7022 (cherry picked from commit 0884236) * fix changelog && rebase
- Loading branch information
Showing
12 changed files
with
317 additions
and
12 deletions.
There are no files selected for viewing
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
// Licensed to Elasticsearch B.V. under one or more contributor | ||
// license agreements. See the NOTICE file distributed with | ||
// this work for additional information regarding copyright | ||
// ownership. Elasticsearch B.V. licenses this file to you under | ||
// the Apache License, Version 2.0 (the "License"); you may | ||
// not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
// +build !integration | ||
|
||
package readfile | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
|
||
"github.com/elastic/beats/filebeat/reader" | ||
) | ||
|
||
type mockReader struct { | ||
line []byte | ||
} | ||
|
||
func (m *mockReader) Next() (reader.Message, error) { | ||
return reader.Message{ | ||
Content: m.line, | ||
}, nil | ||
} | ||
|
||
var limitTests = []struct { | ||
line string | ||
maxBytes int | ||
truncated bool | ||
}{ | ||
{"long-long-line", 5, true}, | ||
{"long-long-line", 3, true}, | ||
{"long-long-line", len("long-long-line"), false}, | ||
} | ||
|
||
func TestLimitReader(t *testing.T) { | ||
for _, test := range limitTests { | ||
r := NewLimitReader(&mockReader{[]byte(test.line)}, test.maxBytes) | ||
|
||
msg, err := r.Next() | ||
if err != nil { | ||
t.Fatalf("Error reading from mock reader: %v", err) | ||
} | ||
|
||
assert.Equal(t, test.maxBytes, len(msg.Content)) | ||
|
||
found := false | ||
statusFlags, err := msg.Fields.GetValue("log.flags") | ||
if err != nil { | ||
if !test.truncated { | ||
assert.False(t, found) | ||
return | ||
} | ||
t.Fatalf("Error getting truncated value: %v", err) | ||
} | ||
|
||
switch flags := statusFlags.(type) { | ||
case []string: | ||
for _, f := range flags { | ||
if f == "truncated" { | ||
found = true | ||
} | ||
} | ||
default: | ||
t.Fatalf("incorrect type for log.flags") | ||
} | ||
|
||
if test.truncated { | ||
assert.True(t, found) | ||
} else { | ||
assert.False(t, found) | ||
} | ||
} | ||
} |
This file contains 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 characters
Oops, something went wrong.