-
Notifications
You must be signed in to change notification settings - Fork 444
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
[infoblox_nios] Handle bad values in IP and Date fields #4489
Conversation
Pinging @elastic/security-external-integrations (Team:Security-External Integrations) |
🚀 Benchmarks reportPackage
|
Data stream | Previous EPS | New EPS | Diff (%) | Result |
---|---|---|---|---|
log |
1650.17 | 1700.68 | 50.51 (3.06%) | 👍 |
To see the full report comment with /test benchmark fullreport
🌐 Coverage report
|
/test benchmark fullreport |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This LGTM, but it would be good to know why the non-semantic changes were made.
@@ -17,51 +17,75 @@ processors: | |||
- rename: | |||
field: _conf.tz_offset | |||
target_field: event.timezone | |||
if: "ctx?._conf?.tz_offset != null && ctx._conf.tz_offset != 'local'" | |||
if: ctx?._conf?.tz_offset != null && ctx._conf.tz_offset != 'local' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if: ctx?._conf?.tz_offset != null && ctx._conf.tz_offset != 'local' | |
if: ctx._conf?.tz_offset != null && ctx._conf.tz_offset != 'local' |
@@ -1,43 +1,48 @@ | |||
# newer versions go on top | |||
- version: "1.3.1" | |||
- version: '1.3.2' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason for the ~global replace of "
with '
?
I have an SDH waiting on this fix. If there are no other blockers, could we get this merged? I'll merge it tomorrow if no one beats me to it by then. |
Type of change
What does this PR do?
This PR adds support for handling bad values in IP and Date fields. Below is the table showing the more updates on this PR.
Checklist
changelog.yml
file.How to test this PR locally
Screenshots
Related issues