-
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.
Merge pull request #1120 from monicasarbu/add_generic_filtering
Add support for include_fields and drop_fields
- Loading branch information
Showing
21 changed files
with
1,345 additions
and
60 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
from filebeat import BaseTest | ||
import os | ||
|
||
""" | ||
Contains tests for filtering. | ||
""" | ||
|
||
|
||
class Test(BaseTest): | ||
def test_dropfields(self): | ||
""" | ||
Check drop_fields filtering action | ||
""" | ||
self.render_config_template( | ||
path=os.path.abspath(self.working_dir) + "/test.log", | ||
filter_enabled=True, | ||
drop_fields=["beat"], | ||
include_fields=None, | ||
) | ||
with open(self.working_dir + "/test.log", "w") as f: | ||
f.write("test message\n") | ||
|
||
filebeat = self.start_beat() | ||
self.wait_until(lambda: self.output_has(lines=1)) | ||
filebeat.check_kill_and_wait() | ||
|
||
output = self.read_output( | ||
required_fields=["@timestamp", "type"], | ||
)[0] | ||
assert "beat.name" not in output | ||
assert "message" in output | ||
|
||
def test_include_fields(self): | ||
""" | ||
Check drop_fields filtering action | ||
""" | ||
self.render_config_template( | ||
path=os.path.abspath(self.working_dir) + "/test.log", | ||
filter_enabled=True, | ||
include_fields=["source", "offset", "message"] | ||
) | ||
with open(self.working_dir + "/test.log", "w") as f: | ||
f.write("test message\n") | ||
|
||
filebeat = self.start_beat() | ||
self.wait_until(lambda: self.output_has(lines=1)) | ||
filebeat.check_kill_and_wait() | ||
|
||
output = self.read_output( | ||
required_fields=["@timestamp", "type"], | ||
)[0] | ||
assert "beat.name" not in output | ||
assert "message" in output |
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,86 @@ | ||
package common | ||
|
||
import ( | ||
"encoding/json" | ||
"reflect" | ||
"time" | ||
|
||
"github.com/elastic/beats/libbeat/logp" | ||
) | ||
|
||
func MarshallUnmarshall(v interface{}) (MapStr, error) { | ||
// decode and encode JSON | ||
marshaled, err := json.Marshal(v) | ||
if err != nil { | ||
logp.Warn("marshal err: %v", err) | ||
return nil, err | ||
} | ||
var v1 MapStr | ||
err = json.Unmarshal(marshaled, &v1) | ||
if err != nil { | ||
logp.Warn("unmarshal err: %v") | ||
return nil, err | ||
} | ||
|
||
return v1, nil | ||
} | ||
|
||
func ConvertToGenericEvent(v MapStr) MapStr { | ||
|
||
for key, value := range v { | ||
|
||
switch value.(type) { | ||
case Time, *Time: | ||
continue | ||
case time.Location, *time.Location: | ||
continue | ||
case MapStr: | ||
v[key] = ConvertToGenericEvent(value.(MapStr)) | ||
continue | ||
case *MapStr: | ||
v[key] = ConvertToGenericEvent(*value.(*MapStr)) | ||
continue | ||
default: | ||
|
||
typ := reflect.TypeOf(value) | ||
|
||
if typ.Kind() == reflect.Ptr { | ||
typ = typ.Elem() | ||
} | ||
|
||
switch typ.Kind() { | ||
case reflect.Bool: | ||
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: | ||
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64: | ||
case reflect.Uintptr: | ||
case reflect.Float32, reflect.Float64: | ||
case reflect.Complex64, reflect.Complex128: | ||
case reflect.String: | ||
case reflect.UnsafePointer: | ||
case reflect.Array, reflect.Slice: | ||
//case reflect.Chan: | ||
//case reflect.Func: | ||
//case reflect.Interface: | ||
case reflect.Map: | ||
anothermap, err := MarshallUnmarshall(value) | ||
if err != nil { | ||
logp.Warn("fail to marschall & unmarshall map %v", key) | ||
continue | ||
} | ||
v[key] = anothermap | ||
|
||
case reflect.Struct: | ||
anothermap, err := MarshallUnmarshall(value) | ||
if err != nil { | ||
logp.Warn("fail to marschall & unmarshall struct %v", key) | ||
continue | ||
} | ||
v[key] = anothermap | ||
default: | ||
logp.Warn("unknown type %v", typ) | ||
continue | ||
} | ||
} | ||
} | ||
return v | ||
} |
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,123 @@ | ||
package common | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/elastic/beats/libbeat/logp" | ||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestConvertNestedMapStr(t *testing.T) { | ||
logp.LogInit(logp.LOG_DEBUG, "", false, true, []string{"*"}) | ||
|
||
type io struct { | ||
Input MapStr | ||
Output MapStr | ||
} | ||
|
||
type String string | ||
|
||
tests := []io{ | ||
io{ | ||
Input: MapStr{ | ||
"key": MapStr{ | ||
"key1": "value1", | ||
}, | ||
}, | ||
Output: MapStr{ | ||
"key": MapStr{ | ||
"key1": "value1", | ||
}, | ||
}, | ||
}, | ||
io{ | ||
Input: MapStr{ | ||
"key": MapStr{ | ||
"key1": String("value1"), | ||
}, | ||
}, | ||
Output: MapStr{ | ||
"key": MapStr{ | ||
"key1": String("value1"), | ||
}, | ||
}, | ||
}, | ||
io{ | ||
Input: MapStr{ | ||
"key": MapStr{ | ||
"key1": []string{"value1", "value2"}, | ||
}, | ||
}, | ||
Output: MapStr{ | ||
"key": MapStr{ | ||
"key1": []string{"value1", "value2"}, | ||
}, | ||
}, | ||
}, | ||
io{ | ||
Input: MapStr{ | ||
"key": MapStr{ | ||
"key1": []String{"value1", "value2"}, | ||
}, | ||
}, | ||
Output: MapStr{ | ||
"key": MapStr{ | ||
"key1": []String{"value1", "value2"}, | ||
}, | ||
}, | ||
}, | ||
io{ | ||
Input: MapStr{ | ||
"@timestamp": MustParseTime("2015-03-01T12:34:56.123Z"), | ||
}, | ||
Output: MapStr{ | ||
"@timestamp": MustParseTime("2015-03-01T12:34:56.123Z"), | ||
}, | ||
}, | ||
} | ||
|
||
for _, test := range tests { | ||
assert.EqualValues(t, test.Output, ConvertToGenericEvent(test.Input)) | ||
} | ||
|
||
} | ||
|
||
func TestConvertNestedStruct(t *testing.T) { | ||
logp.LogInit(logp.LOG_DEBUG, "", false, true, []string{"*"}) | ||
|
||
type io struct { | ||
Input MapStr | ||
Output MapStr | ||
} | ||
|
||
type TestStruct struct { | ||
A string | ||
B int | ||
} | ||
|
||
tests := []io{ | ||
io{ | ||
Input: MapStr{ | ||
"key": MapStr{ | ||
"key1": TestStruct{ | ||
A: "hello", | ||
B: 5, | ||
}, | ||
}, | ||
}, | ||
Output: MapStr{ | ||
"key": MapStr{ | ||
"key1": MapStr{ | ||
"A": "hello", | ||
"B": float64(5), | ||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
for _, test := range tests { | ||
assert.EqualValues(t, test.Output, ConvertToGenericEvent(test.Input)) | ||
} | ||
|
||
} |
Oops, something went wrong.