Skip to content

Commit

Permalink
Fix the Syslog search in the Dashboards
Browse files Browse the repository at this point in the history
It used to query `*` and I changed it to query `_exists_:system.syslog`, which
will cause less confusion on the Syslog module dashboard.

Probably it added to the confusion in elastic#3912.
  • Loading branch information
Tudor Golubenco committed Apr 5, 2017
1 parent e73bb6b commit 7502a22
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
"title": "Syslog system logs",
"version": 1,
"kibanaSavedObjectMeta": {
"searchSourceJSON": "{\"index\":\"filebeat-*\",\"filter\":[],\"highlight\":{\"pre_tags\":[\"@kibana-highlighted-field@\"],\"post_tags\":[\"@/kibana-highlighted-field@\"],\"fields\":{\"*\":{}},\"require_field_match\":false,\"fragment_size\":2147483647},\"query\":{\"query_string\":{\"query\":\"*\",\"analyze_wildcard\":true}}}"
"searchSourceJSON": "{\"index\":\"filebeat-*\",\"filter\":[],\"highlight\":{\"pre_tags\":[\"@kibana-highlighted-field@\"],\"post_tags\":[\"@/kibana-highlighted-field@\"],\"fields\":{\"*\":{}},\"require_field_match\":false,\"fragment_size\":2147483647},\"query\":{\"query_string\":{\"query\":\"_exists_:system.syslog\",\"analyze_wildcard\":true}},\"highlightAll\":true}"
},
"columns": [
"system.syslog.hostname",
"system.syslog.program",
"system.syslog.message"
]
}
}

0 comments on commit 7502a22

Please sign in to comment.