Skip to content
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

Assign default pipelines in monitoring index templates #37334

Closed
ycombinator opened this issue Jan 11, 2019 · 2 comments
Closed

Assign default pipelines in monitoring index templates #37334

ycombinator opened this issue Jan 11, 2019 · 2 comments

Comments

@ycombinator
Copy link
Contributor

ycombinator commented Jan 11, 2019

Currently the Monitoring HttpExporter adds the pipeline parameter to every bulk index request:

params.put("pipeline", MonitoringTemplateUtils.pipelineName(MonitoringTemplateUtils.TEMPLATE_VERSION));

Further, the pipeline name is selected using the version of the monitoring index templates (2, 6, etc.):

public static String pipelineName(String id) {
return "xpack_monitoring_" + id;
}

With #32286, we can now set the default pipeline within each monitoring index template itself and remove this bit of code.

@ycombinator
Copy link
Contributor Author

ycombinator commented Jan 11, 2019

@pickypg pointed out that the LocalExporter sets the Ingest pipeline on every index request as well:

if (usePipeline) {
request.setPipeline(MonitoringTemplateUtils.pipelineName(MonitoringTemplateUtils.TEMPLATE_VERSION));
}

@rjernst rjernst added the Team:Data Management Meta label for data/management team label May 4, 2020
@dakrone
Copy link
Member

dakrone commented May 8, 2024

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.

@dakrone dakrone closed this as not planned Won't fix, can't repro, duplicate, stale May 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants