-
Notifications
You must be signed in to change notification settings - Fork 456
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
[System] Migrate dashboards to "by value" #5023
Changes from 16 commits
80c73d0
6a9ea2b
fd546a4
cda0ace
4280b3d
5508cd2
32cc3fa
62551ef
053633c
6e7644f
6a81552
29f26b7
d408a6a
5c814e6
138bc74
936d41c
dbb5b41
89f83b3
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 |
---|---|---|
@@ -1,4 +1,9 @@ | ||
# newer versions go on top | ||
- version: "1.21.0-next" | ||
changes: | ||
- description: Migrate dashboards to be by value | ||
mrodm marked this conversation as resolved.
Show resolved
Hide resolved
|
||
type: enhancement | ||
link: https://github.com/elastic/integrations/pull/5023 | ||
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. Added just an entry in changelog with In this way, @elastic/elastic-agent-data-plane can decide when it needs to be released by updating the manifest and removing this suffix in another PR. |
||
- version: "1.20.4" | ||
changes: | ||
- description: Remove wrong visualization from dashboard | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
dynamic_fields: | ||
"@timestamp": "^[0-9]{4}(-[0-9]{2}){2}T[0-9]{2}(:[0-9]{2}){2}\\.[0-9]{3}" | ||
Comment on lines
+1
to
+2
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. As suggested in #4950, added this dynamic field to fix tests due to timestamps: --- want
+++ got
@@ -1,7 +1,7 @@
{
"expected": [
{
- "@timestamp": "2022-05-21T21:54:44.000Z",
+ "@timestamp": "2023-05-21T21:54:44.000Z",
"ecs": {
"version": "8.0.0"
}, |
||
fields: | ||
event.timezone: "+0000" | ||
multiline: | ||
|
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.
Do we normally tag versions here with
-next
? Don't know if I've seen that on an integration before?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.
If
-next
is added to the version, it is not published. This can be used to allow other PRs to be added without releasing.Here is a doc about it where it shows a possible use case: https://github.com/elastic/integrations/blob/main/docs/developer_workflow_design_build_test_integration.md#remember-to-bump-up-the-version
I set the version as this (without updating manifest.yml), so the package owner team can release this when they decide.
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.
As talked to @jlind23 and @pierrehilbert about this versioning, I'll update the changelog entry and the manifest to be
1.21.0
version. So once it is merged, it will be published.