Merged
Conversation
mashhurs
commented
Jul 10, 2025
src/main/java/co/elastic/logstash/filters/elasticintegration/EventProcessor.java
Show resolved
Hide resolved
src/main/java/co/elastic/logstash/filters/elasticintegration/EventProcessorBuilder.java
Show resolved
Hide resolved
src/main/java/co/elastic/logstash/filters/elasticintegration/IngestDuplexMarshaller.java
Outdated
Show resolved
Hide resolved
src/main/java/co/elastic/logstash/filters/elasticintegration/geoip/GeoIpProcessorFactory.java
Outdated
Show resolved
Hide resolved
src/main/java/co/elastic/logstash/filters/elasticintegration/ingest/PipelineProcessor.java
Outdated
Show resolved
Hide resolved
src/main/java/co/elastic/logstash/filters/elasticintegration/ingest/RedactPlugin.java
Outdated
Show resolved
Hide resolved
|
This pull request does not have a backport label. Could you fix it @mashhurs? 🙏
|
0707b1b to
bc9af21
Compare
mashhurs
commented
Jul 10, 2025
src/main/java/co/elastic/logstash/filters/elasticintegration/PipelineConfigurationFactory.java
Outdated
Show resolved
Hide resolved
mashhurs
commented
Jul 16, 2025
src/main/java/co/elastic/logstash/filters/elasticintegration/IngestDuplexMarshaller.java
Show resolved
Hide resolved
18333c6 to
5a96c8c
Compare
9820699 to
9bdad09
Compare
mashhurs
commented
Jul 23, 2025
…s. Removes required upwrap interface since upstream moved to default method. Utilizes metadata version field since upstream made it accessible.
09c332c to
9b0b557
Compare
fa3468c to
53ded41
Compare
mashhurs
commented
Aug 8, 2025
|
|
||
| import org.elasticsearch.ingest.geoip.IpDatabase; | ||
|
|
||
| public interface ValidatableIpDatabase extends IpDatabase { |
|
|
||
| import java.util.Map; | ||
|
|
||
| public class RedactPlugin extends Plugin implements IngestPlugin { |
Collaborator
Author
There was a problem hiding this comment.
moved to the upstream bridge.
src/main/java/co/elastic/logstash/filters/elasticintegration/util/PluginProjectResolver.java
Show resolved
Hide resolved
…s to logstash-bridge.
- `new ${BRIDGE}(...)` -> `${BRIDGE}.create(...)`: use bridge-provided
factory methods
- `${INTERNAL}Bridge.${NESTED}` -> `${INTERNAL}${NESTED}Bridge`: extract
nested bridges to top-level
- `${BRIDGE}.AbstractExternal` -> `AbstractExternal${BRIDGE}`: extract
nested "AbstractExternal" base implementations to top-level
yaauie
reviewed
Sep 5, 2025
Member
yaauie
left a comment
There was a problem hiding this comment.
Overall LGTM.
We need to first merge the upstream PR on elasticsearch elastic/elasticsearch#132595 (review) and then ensure we're pointing at the correct ELASTICSEARCH_REPO and ELASTICSEARCH_TREEISH in gradle.properties.
src/main/java/co/elastic/logstash/filters/elasticintegration/geoip/GeoIpProcessorFactory.java
Outdated
Show resolved
Hide resolved
Collaborator
💚 Build Succeeded
History
|
yaauie
approved these changes
Sep 8, 2025
Member
yaauie
left a comment
There was a problem hiding this comment.
👍🏼 Looks good. It's been a long road but it will be very good to have this stable bridge in place.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR highlights the initial changes required to move to the Bridge Stable API. However, this doesn't mean these changes will be enough for the plugin to be a in normal working state. Rather, this changes highlight how does current bridge Spable API state align with plugin requirements. Based on the discussions on these changes, we may need to adjust the plan (sub-tasks).
Next steps
elastic_integrationplugin usage to ES logstash-bridge. elasticsearch#131486PLEASE IGNORE:
gradle.buildchanges which are already counted in [Move to ES Bridge] Buildlogstash-bridgeand include in the plugin #330, this is a requirement to call Bridge Stable API interfaces.