Skip to content
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

Merged
merged 2 commits into from
Mar 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
"enabled": true,
"id": "3",
"params": {
"field": "apache2.access.user_agent.major",
"field": "user_agent.version",
"order": "desc",
"orderBy": "1",
"size": 5
Expand Down Expand Up @@ -250,7 +250,7 @@
"enabled": true,
"id": "3",
"params": {
"field": "apache2.access.user_agent.os_major",
"field": "user_agent.os.version",
"order": "desc",
"orderBy": "1",
"size": 5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@
"enabled": true,
"id": "3",
"params": {
"field": "iis.access.user_agent.major",
"field": "user_agent.version",
"order": "desc",
"orderBy": "1",
"size": 5
Expand Down Expand Up @@ -308,7 +308,7 @@
"enabled": true,
"id": "3",
"params": {
"field": "iis.access.user_agent.os_major",
"field": "user_agent.os.version",
"order": "desc",
"orderBy": "1",
"size": 5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"id": "1",
"params": {
"customLabel": "Query time",
"field": "mysql.slowlog.query_time.sec"
"field": "event.duration"
Copy link
Member

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.

},
"schema": "metric",
"type": "max"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"enabled": true,
"id": "3",
"params": {
"field": "nginx.access.user_agent.major",
"field": "user_agent.version",
"order": "desc",
"orderBy": "1",
"size": 5
Expand Down Expand Up @@ -111,7 +111,7 @@
"enabled": true,
"id": "3",
"params": {
"field": "nginx.access.user_agent.os_major",
"field": "user_agent.os.version",
"order": "desc",
"orderBy": "1",
"size": 5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"enabled": true,
"id": "3",
"params": {
"field": "nginx.access.remote_ip",
"field": "source.address",
Copy link
Member

Choose a reason for hiding this comment

The 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.

Copy link
Contributor

Choose a reason for hiding this comment

The 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
Expand Down Expand Up @@ -241,7 +241,7 @@
"enabled": true,
"id": "2",
"params": {
"field": "nginx.access.remote_ip",
"field": "source.address",
"order": "desc",
"orderBy": "1",
"size": 5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@
"enabled": true,
"id": "2",
"params": {
"field": "nginx.access.remote_ip",
"field": "source.address",
"order": "desc",
"orderBy": "1",
"size": 5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"enabled": true,
"id": "3",
"params": {
"field": "traefik.access.user_agent.major",
"field": "user_agent.version",
"order": "desc",
"orderBy": "1",
"size": 5
Expand Down Expand Up @@ -111,7 +111,7 @@
"enabled": true,
"id": "3",
"params": {
"field": "traefik.access.user_agent.os_major",
"field": "user_agent.os.version",
"order": "desc",
"orderBy": "1",
"size": 5
Expand Down
2 changes: 1 addition & 1 deletion libbeat/docs/field-name-changes.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
[frame="topbot",options="header"]
|======================
|Old Field|New Field
|`auditd.message_type` |`event.type`
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@webmat Do we need to revert this change?

Copy link
Contributor

Choose a reason for hiding this comment

The 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`
Expand All @@ -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`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs to be put back as it was. event.type is reserved and should not be used in 7.0

|`meta.cloud.availability_zone` |`cloud.availability_zone`
|`meta.cloud.instance_id` |`cloud.instance.id`
|`meta.cloud.instance_name` |`cloud.instance.name`
Expand Down