-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[Monitoring] Bulk Uploader uses new ES client #94908
[Monitoring] Bulk Uploader uses new ES client #94908
Conversation
ec908b8
to
353ee37
Compare
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.
Tested, and everything checks out. Great job 🏆 Thank you for the quick fix!
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.
tested locally and it worked, thanks!
@elasticmachine merge upstream |
@elasticmachine merge upstream |
💚 Build Succeeded
Metrics [docs]
History
To update your PR or re-run it, just comment with: |
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> # Conflicts: # x-pack/plugins/monitoring/server/plugin.test.ts # x-pack/plugins/monitoring/server/plugin.ts # x-pack/plugins/monitoring/server/types.ts
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> # Conflicts: # x-pack/plugins/monitoring/server/plugin.test.ts # x-pack/plugins/monitoring/server/plugin.ts # x-pack/plugins/monitoring/server/types.ts
Summary
Resolves #94900.
Bulk Uploader uses an Elasticsearch client that connects to its own cluster (not the remote one). It used to extend the legacy client to provide support to the
monitoring.bulk
requests. Maintaining its own client required handling reconnections.The new client provides that for free. This PR updates the Bulk Uploader to use the new client instead.
Checklist
Delete any items that are not applicable to this PR.
For maintainers