-
Notifications
You must be signed in to change notification settings - Fork 4.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
Fixed Filebeat ECS dashboards #11520
Changes from all commits
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 |
---|---|---|
|
@@ -40,7 +40,7 @@ | |
"enabled": true, | ||
"id": "3", | ||
"params": { | ||
"field": "nginx.access.remote_ip", | ||
"field": "source.address", | ||
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. I can't find this on in our ecs migration list. Seems like we missed this one. 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. This was the main reason for #11512. You'll see it when it's backported ;-) |
||
"order": "desc", | ||
"orderBy": "1", | ||
"size": 5 | ||
|
@@ -241,7 +241,7 @@ | |
"enabled": true, | ||
"id": "2", | ||
"params": { | ||
"field": "nginx.access.remote_ip", | ||
"field": "source.address", | ||
"order": "desc", | ||
"orderBy": "1", | ||
"size": 5 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
[frame="topbot",options="header"] | ||
|====================== | ||
|Old Field|New Field | ||
|`auditd.message_type` |`event.type` | ||
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. @webmat Do we need to revert this change? 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. Yes it should :-) |
||
|`auditd.messages` |`event.original` | ||
|`auditd.warnings` |`error.message` | ||
|`beat.hostname` |`agent.hostname` | ||
|
@@ -12,7 +13,6 @@ | |
|`docker.container.image` |`container.image.name` | ||
|`docker.container.labels` |`container.labels` | ||
|`docker.container.name` |`container.name` | ||
|`event.type` |`auditd.message_type` | ||
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. This needs to be put back as it was. |
||
|`meta.cloud.availability_zone` |`cloud.availability_zone` | ||
|`meta.cloud.instance_id` |`cloud.instance.id` | ||
|`meta.cloud.instance_name` |`cloud.instance.name` | ||
|
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.
This one changes the unit, so it's not a 1-1 mapping. We should follow up to see if the dashboard still looks as expected.