Skip to content

Commit

Permalink
Cherry-pick #19032 to 7.8: Improve performance of PANW module dashboa…
Browse files Browse the repository at this point in the history
…rds (#19060)

A saved search was using `panw.panos: *` as to filter for data from the
dataset, instead of the more efficient `event.dataset: panw.panos`.

(cherry picked from commit 2dad8db)
  • Loading branch information
adriansr authored Jun 9, 2020
1 parent 1ac85ce commit 7eddfae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Add dashboard for Google Cloud Audit and AWS CloudTrail. {pull}17379[17379]
- Add support for array parsing in azure-eventhub input. {pull}18585[18585]
from being added to events by default. {pull}18159[18159]
- Improved performance of PANW sample dashboards. {issue}19031[19031] {pull}19032[19032]

*Heartbeat*

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1075,7 +1075,7 @@
"indexRefName": "kibanaSavedObjectMeta.searchSourceJSON.index",
"query": {
"language": "kuery",
"query": "panw.panos:* and event.category: \"network_traffic\""
"query": "event.dataset: \"panw.panos\" and event.category: \"network_traffic\""
},
"version": true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@
"indexRefName": "kibanaSavedObjectMeta.searchSourceJSON.index",
"query": {
"language": "kuery",
"query": "panw.panos:* and event.category: \"security_threat\""
"query": "event.dataset: \"panw.panos\" and event.category: \"security_threat\""
},
"version": true
}
Expand Down

0 comments on commit 7eddfae

Please sign in to comment.