Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Remove types from Monitoring plugin "backend" code #37745
Remove types from Monitoring plugin "backend" code #37745
Changes from 13 commits
2cd4b9b
d824964
9d00b79
f691585
da1a299
abd8699
33fe139
669f294
b7eaeb8
ab9c7ae
8876abe
9bcc095
df335e3
8f41a4b
79e7eed
c6d1c10
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
@jtibshirani In your offline discussion you mentioned:
Given that, should the argument to
startObject
here beMapperService.SINGLE_MAPPING_NAME
, which would evaluate to_doc
or should it be"doc"
?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.
I think for now we should keep it the same as before (using
doc
), until we come to a firm conclusion in that discussion to update the monitoring templates.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.
Why add in a default type here ?
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.
@pickypg can correct me if I'm wrong but I believe this argument is the monitoring data type, e.g.
beats_stats
orlogstash_state
, etc. that are sent in to thePOST _xpack/monitoring/_bulk
API. So I wanted to be more explicit about what the type is, so we don't confuse it in the future with_type
.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.
They are. We use that as a mechanism for routing the document to the right index.
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.
thanks, i see now.