Skip to content

Commit

Permalink
[filebeat] Fix incorrect field references in envoyproxy dashboard (el…
Browse files Browse the repository at this point in the history
  • Loading branch information
faec authored Aug 29, 2019
1 parent 26e171d commit 83be399
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Fix timezone parsing of system module ingest pipelines. {pull}13308[13308]
- Change iis url.path grok pattern from URIPATH to NOTSPACE. {issue}12710[12710] {pull}13225[13225]
- Add timezone information to apache error fileset. {issue}12772[12772] {pull}13304[13304]
- 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

0 comments on commit 83be399

Please sign in to comment.