We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently the Monitoring HttpExporter adds the pipeline parameter to every bulk index request:
HttpExporter
pipeline
elasticsearch/x-pack/plugin/monitoring/src/main/java/org/elasticsearch/xpack/monitoring/exporter/http/HttpExporter.java
Line 565 in 9fd4d6b
Further, the pipeline name is selected using the version of the monitoring index templates (2, 6, etc.):
elasticsearch/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/monitoring/exporter/MonitoringTemplateUtils.java
Lines 112 to 114 in 9fd4d6b
With #32286, we can now set the default pipeline within each monitoring index template itself and remove this bit of code.
The text was updated successfully, but these errors were encountered:
@pickypg pointed out that the LocalExporter sets the Ingest pipeline on every index request as well:
LocalExporter
elasticsearch/x-pack/plugin/monitoring/src/main/java/org/elasticsearch/xpack/monitoring/exporter/local/LocalBulk.java
Lines 78 to 80 in 9fd4d6b
Sorry, something went wrong.
Internal monitoring has been deprecated for quite a while, and we're no longer doing any active development on it. I'm going to close this issue.
No branches or pull requests
Currently the Monitoring
HttpExporter
adds thepipeline
parameter to every bulk index request:elasticsearch/x-pack/plugin/monitoring/src/main/java/org/elasticsearch/xpack/monitoring/exporter/http/HttpExporter.java
Line 565 in 9fd4d6b
Further, the pipeline name is selected using the version of the monitoring index templates (2, 6, etc.):
elasticsearch/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/monitoring/exporter/MonitoringTemplateUtils.java
Lines 112 to 114 in 9fd4d6b
With #32286, we can now set the default pipeline within each monitoring index template itself and remove this bit of code.
The text was updated successfully, but these errors were encountered: