-
Notifications
You must be signed in to change notification settings - Fork 536
Various integration package enhancements and fixes #6359
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
Changes from all commits
7a37efc
81276b2
01fb47b
2125653
03d19fc
638a928
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
dependencies: | ||
ecs: | ||
# TODO(axw) make sure this is kept in sync with the ECS version used in libbeat. | ||
reference: [email protected] | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,18 +3,30 @@ | |
# change type can be one of: enhancement, bugfix, breaking-change | ||
- version: "7.16.0" | ||
changes: | ||
- description: version bump to align package version with stack version | ||
- description: updated package version to align with stack version | ||
type: enhancement | ||
link: https://github.com/elastic/apm-server/issues/4898 | ||
- description: added client.geo fields to internal_metrics | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: the language we use is inconsistent with the first (already existing) item - could you update to for consistency:
Actually, it is inconsistent also compared to prev. versions - since this is a big refactor PR, would you mind aligning? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. updated all changelog descriptions in the package to use past tense |
||
type: bugfix | ||
link: https://github.com/elastic/apm-server/pull/6359 | ||
- description: removed unused fields | ||
type: enhancement | ||
link: https://github.com/elastic/apm-server/pull/6359 | ||
- description: changed processor.{name,event} to constant_keyword where possible | ||
type: enhancement | ||
link: https://github.com/elastic/apm-server/pull/6359 | ||
- description: changed to data-stream specific ingest pipelines | ||
type: enhancement | ||
link: https://github.com/elastic/apm-server/pull/6359 | ||
- version: "0.5.0" | ||
changes: | ||
- description: define index sorting for internal metrics | ||
- description: added index sorting for internal metrics | ||
type: enhancement | ||
link: https://github.com/elastic/apm-server/pull/6116 | ||
- description: add histogram dynamic_template to app metrics data stream | ||
- description: added histogram dynamic_template to app metrics data stream | ||
type: enhancement | ||
link: https://github.com/elastic/apm-server/pull/6043 | ||
- description: remove warm phase from ILM policies | ||
- description: removed warm phase from ILM policies | ||
type: enhancement | ||
link: https://github.com/elastic/apm-server/pull/6229 | ||
- description: added privileges to tail-sampled traces data stream | ||
|
@@ -25,10 +37,10 @@ | |
link: https://github.com/elastic/apm-server/pull/6139 | ||
- version: "0.4.0" | ||
changes: | ||
- description: add anonymous auth config, replace some RUM config | ||
- description: added anonymous auth config, replace some RUM config | ||
type: breaking-change | ||
link: https://github.com/elastic/apm-server/pull/5623 | ||
- description: use new apm-server.auth config | ||
- description: updated to use new apm-server.auth config | ||
type: breaking-change | ||
link: https://github.com/elastic/apm-server/pull/5691 | ||
- version: "0.3.0" | ||
|
@@ -44,7 +56,7 @@ | |
- description: added support for apm-server.rum.allow_service_names | ||
type: enhancement | ||
link: https://github.com/elastic/apm-server/pull/5030 | ||
- description: introduce a configurable default service environment | ||
- description: added support a configurable default service environment | ||
type: enhancement | ||
link: https://github.com/elastic/apm-server/pull/4861 | ||
- version: "0.1.0" | ||
|
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
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.
Is there any way we can introduce some sort of check in the makefile or the build package process to error if it's not? Doesn't necessarily have to be done in this PR but may be a good candidate for a follow-up.
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.
maybe we could even automate that as part of the
make update-beats
command (in a follow up PR).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.
Yup, opened #6362 to track this