-
Notifications
You must be signed in to change notification settings - Fork 24.9k
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
Avoid deprecation warnings due to monitoring index templates. #37442
Comments
Pinging @elastic/es-core-features |
The new parameter |
@kesslerm I don't think this is a supported configuration. From https://www.elastic.co/guide/en/elastic-stack-overview/current/how-monitoring-works.html:
When deciding how to tackle warnings in monitoring, we relied on this restriction (that the remote cluster must be upgraded first). |
Closing this issue, as it was addressed in the linked PRs. |
When putting and getting templates, monitoring currently uses the old typed APIs. In particular, the type name is included in the mapping definition, and when communicating over REST, the parameter
include_type_name=true
is specified.When we soon deprecate the typed put + get templates calls on master, this will result in us issuing deprecation warnings when the monitoring
http
exporter is used. This won't be a great experience for users, as they'll receive deprecation warnings that are out of their control to fix. Note that if thehttp
exporter needs to be able to connect to a 6.7 cluster, theninclude_type_name
should be explicitly provided and set tofalse
, sinceinclude_type_name
defaults totrue
in 6.7 (whereas on master it defaults tofalse
).The text was updated successfully, but these errors were encountered: