-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Filebeat] Netflow input - disable event normalization #37764
Comments
hi @andrewkroh, please correct me if I am wrong, but to achieve disabling the |
You're right. It does need to be using the v2 API. I forgot that we had inputs that haven't been migrated. |
thx for acknowledging my understanding @andrewkroh . I think that this issue should come first before #37762 and #37761 to get this first as a plugin v2 and then work our way through these |
I created a separate issue for the conversion. #37865 |
This fixes the encoding of types that derive from a primitive type, such as net.IP which derives from []byte. Relates: elastic/beats#37764
Describe the enhancement:
Disable Beat event normalization for the input. Event normalization should not be needed for the input because it only uses basic types in its events. This will save CPU time for each event that is
Publish()
ed.Example:
beats/x-pack/filebeat/input/awss3/input.go
Lines 158 to 166 in 4586146
Describe a specific use case for the enhancement or feature:
This will marginally speed up the input's processing times (like 2%).
Related Issues
The text was updated successfully, but these errors were encountered: