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

[filebeat] Fix incorrect field references in envoyproxy dashboard (#1… #13423

Merged
merged 2 commits into from
Aug 30, 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
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Add missing Kubernetes metadata fields to Filebeat CoreDNS module, and fix a documentation error. {pull}11591[11591]
- Reduce memory usage if long lines are truncated to fit `max_bytes` limit. The line buffer is copied into a smaller buffer now. This allows the runtime to release unused memory earlier. {pull}11524[11524]
- Fix timezone parsing of system module ingest pipelines. {pull}13308[13308]
- Fix incorrect field references in envoyproxy dashboard {issue}13420[13420] {pull}13421[13421]

*Heartbeat*

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@
"enabled": true,
"id": "2",
"params": {
"field": "url.domain.keyword",
"field": "url.domain",
"missingBucket": false,
"missingBucketLabel": "Missing",
"order": "desc",
Expand Down Expand Up @@ -431,7 +431,7 @@
"enabled": true,
"id": "2",
"params": {
"field": "source.address.keyword",
"field": "source.address",
"missingBucket": false,
"missingBucketLabel": "Missing",
"order": "desc",
Expand Down Expand Up @@ -594,7 +594,7 @@
"enabled": true,
"id": "1",
"params": {
"field": "url.domain.keyword"
"field": "url.domain"
},
"schema": "metric",
"type": "cardinality"
Expand Down Expand Up @@ -730,7 +730,7 @@
"enabled": true,
"id": "2",
"params": {
"field": "user_agent.name.keyword",
"field": "user_agent.name",
"missingBucket": false,
"missingBucketLabel": "Missing",
"order": "desc",
Expand Down Expand Up @@ -845,7 +845,7 @@
"enabled": true,
"id": "2",
"params": {
"field": "envoyproxy.proxy_type.keyword",
"field": "envoyproxy.proxy_type",
"missingBucket": false,
"missingBucketLabel": "Missing",
"order": "desc",
Expand Down