Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## UNRELEASED
- Include Elasticsearch web-utils JAR into the plugin to keep `registered_domain` processor dependencies [#397](https://github.com/elastic/logstash-filter-elastic_integration/pull/397)
- Fixed `set_security_user` processor to behave consistently with other unsupported processors (`inference`, `enrich`) by tagging events with `_ingest_pipeline_failure` [#269](https://github.com/elastic/logstash-filter-elastic_integration/pull/269)
- Apply Elasticsearch user-agent plugin refactoring [#408](https://github.com/elastic/logstash-filter-elastic_integration/pull/408)

## 9.3.2
- Upgrades `elasticsearch-java` and `elasticsearch-rest-client` dependencies to 9.latest [#418](https://github.com/elastic/logstash-filter-elastic_integration/pull/418)
Expand Down
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,7 @@ task importMinimalElasticsearch() {
include jarPackageNamed("elasticsearch-logging")
include jarPackageNamed("elasticsearch-x-content")
include jarPackageNamed("elasticsearch-geo")
include jarPackageNamed("elasticsearch-user-agent-api")
include jarPackageNamed("lucene-core")
include jarPackageNamed("lucene-analysis-common")
include jarPackageNamed("hppc")
Expand All @@ -466,8 +467,8 @@ task importMinimalElasticsearch() {
include jarPackageNamed("elasticsearch-web-utils")
}

from(buildElasticsearchLocalDistro.module("ingest-user-agent")) {
include jarPackageNamed("ingest-user-agent")
from(buildElasticsearchLocalDistro.module("user-agent")) {
include jarPackageNamed("user-agent")
}

from(shadeElasticsearchIngestGeoIpModule)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import org.elasticsearch.logstashbridge.ingest.ProcessorParametersBridge;
import org.elasticsearch.logstashbridge.plugins.IngestCommonPluginBridge;
import org.elasticsearch.logstashbridge.plugins.IngestPluginBridge;
import org.elasticsearch.logstashbridge.plugins.IngestUserAgentPluginBridge;
import org.elasticsearch.logstashbridge.plugins.RedactPluginBridge;
import org.elasticsearch.logstashbridge.script.ScriptServiceBridge;
import org.elasticsearch.logstashbridge.threadpool.ThreadPoolBridge;
Expand Down Expand Up @@ -113,8 +112,8 @@ public EventProcessorBuilder() {
IngestCommonPluginBridge.TRIM_PROCESSOR_TYPE,
IngestCommonPluginBridge.URL_DECODE_PROCESSOR_TYPE,
IngestCommonPluginBridge.UPPERCASE_PROCESSOR_TYPE,
IngestCommonPluginBridge.URI_PARTS_PROCESSOR_TYPE));
this.addProcessorsFromPlugin(IngestUserAgentPluginBridge::new);
IngestCommonPluginBridge.URI_PARTS_PROCESSOR_TYPE,
IngestCommonPluginBridge.USER_AGENT_PROCESSOR_TYPE));
this.addProcessorsFromPlugin(RedactPluginBridge::new);
}

Expand Down
Loading