Skip to content

Commit

Permalink
[Filebeat]Fix filebeat azure dashboards - event.category should be `A…
Browse files Browse the repository at this point in the history
…lert` (elastic#14668)

* Fix filebeat azure dashboards

* Update changelog
  • Loading branch information
narph committed Nov 21, 2019
1 parent e08c6ec commit 2603c5a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Fix handling multiline log entries in nginx module. {issue}14349[14349] {pull}14499[14499]
- Fix parsing of Elasticsearch node name by `elasticsearch/slowlog` fileset. {pull}14547[14547]
- cisco/asa fileset: Fix parsing of 302021 message code. {pull}14519[14519]
- Fix filebeat azure dashboards, event category should be `Alert`. {pull}14668[14668]

*Heartbeat*

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@
"indexRefName": "kibanaSavedObjectMeta.searchSourceJSON.index",
"query": {
"language": "kuery",
"query": "event.dataset :\"azure.activitylogs\" and event.category : \"Alerts\" "
"query": "event.dataset :\"azure.activitylogs\" and event.category : \"Alert\" "
}
}
},
Expand Down Expand Up @@ -455,7 +455,7 @@
"indexRefName": "kibanaSavedObjectMeta.searchSourceJSON.index",
"query": {
"language": "kuery",
"query": "event.dataset :\"azure.activitylogs\" and event.category : \"Alerts\" "
"query": "event.dataset :\"azure.activitylogs\" and event.category : \"Alert\" "
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1134,7 +1134,7 @@
"indexRefName": "kibanaSavedObjectMeta.searchSourceJSON.index",
"query": {
"language": "kuery",
"query": "event.dataset :\"azure.activitylogs\" and event.category : \"Alerts\" "
"query": "event.dataset :\"azure.activitylogs\" and event.category : \"Alert\" "
}
}
},
Expand Down

0 comments on commit 2603c5a

Please sign in to comment.