-
Notifications
You must be signed in to change notification settings - Fork 25.1k
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
Add CEF processor to Ingest node #122491
base: main
Are you sure you want to change the base?
Add CEF processor to Ingest node #122491
Conversation
I realize this draft is still in progress, and you likely already have plans for these items.
Additionally, there is a CEF v1 specification (our |
I asked Lee H about micro-benchmarking, and JMH is being used (see https://github.com/elastic/elasticsearch/tree/main/benchmarks#elasticsearch-microbenchmark-suite). So this could add a benchmark under that suite of tests. |
Will this be comparable to the microbenchmarking that is done in the beats processor? |
This prevents us from needing to return a copy or from needing to put the maps in an unmodifiable wrapper. The object is single use: you build it, get the maps, close it, and then you're done.
which silences a warning from IntelliJ
So that when comparing large maps it's clearer where the difference between the two maps actually is.
assertEquals("Invalid IP address format", exception.getMessage()); | ||
} | ||
|
||
public void toIP_nullString() { |
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.
These toIP_
methods aren't formatted to actually be JUnit tests (which start with test
), so none of them are running. If you fix that so that they do run, not all of the tests pass.
Please avoid underscores in these names, regardless, so for example have toIP_nullString
become testToIPNullString
.
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.
2b5bfd2 fixes this
The toIp tests with null / empty string are still valid Referring to docs from InetAddress.getByName() "If the host is null or host.length() is equal to zero, then an InetAddress representing an address of the loopback interface is returned."
// Insert separators if necessary | ||
String macWithSeparators = insertMACSeparators(v); | ||
// Validate MAC address format | ||
Pattern macAddressPattern = Pattern.compile(MAC_ADDRESS_REGEX); |
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.
Don't compile regexes at runtime in this way -- do it statically.
Closes - #126201
This PR creates a new CEF ingest node processor. The CEF processor converts a Common Event Format logs into a JSON structure. This processor also maps relevant CEF fields to ECS mappings without a need for additional processors in Ingest pipeline
Example
An example CEF parsing would look like
CEF LOG
Parsed CEF content
gradle check
?