-
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
[Ingest Manager] Update dataset.*
to data_stream.*
in package config SO attributes
#74414
Conversation
@@ -10,6 +10,7 @@ const CONFIG_KEYS_ORDER = [ | |||
'id', | |||
'name', | |||
'revision', | |||
'dataset', |
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.
Should this be data_stream
? I think I miss how this works.
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.
dataset.*
to data_stream.*
in full agent config yamldataset.*
to data_stream.*
in package config SO attributes
I updated this PR to change |
💚 Build SucceededBuild metricsasync chunks size
History
To update your PR or re-run it, just comment with: |
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 with agent basic scenario, assigning custom config
datastream.* populated correctly and indices named according to rules
Tested locally in standalone and managed mode. Only thing that will need adjustment is the logs package as it has a dataset config: https://github.com/elastic/package-storage/blob/production/packages/log/0.3.4/dataset/log/manifest.yml#L19 We should also check if there is any other package with such a config? LGTM |
Pinging @elastic/ingest-management (Team:Ingest Management) |
…fig SO attributes (elastic#74414) * Update `dataset.*` to `data_stream.*` in full agent config yaml * Replace `dataset.*` with `data_stream.*` in package config saved object attributes # Conflicts: # x-pack/test/page_load_metrics/es_archives/default/mappings.json
Summary
This PR changes the
dataset.*
fields in package config saved objects todata_stream.*
to support elastic/beats#20420.