Using Search Bar
This document explains some of the examples on how to use the Search bar. The search bar is present on all the Pulse pages.
- You can use various Pulse columns like Id, hosts start date, variance, and so as search fields to perform a search. You can apply appropriate operators on search fields.
host.name.keyword:(NOT hdp1001.qe.iti.acceldata.dev hdp1002.qe.iti.acceldata.dev )
(Note that the filter value list is space separated)
source:(NOT state-change.log server.log)
- To exclude services yarn_application and kafka_server_gc from search results, use below query_application and kafka_ server_gc from search results, use below query
fields.component:(NOT yarn_application kafka_server_gc)
- To exclude log levels INFO and WARN from search results, use below query
loglevel:(NOT INFO WARN)
- To filter for messages that contain "exception" but not "connection", use below query
message:(+exception -connection)
Sample search including multiple filters:
host.name.keyword:(NOT hdp1001.qe.iti.acceldata.dev hdp1002.qe.iti.acceldata.dev ) AND source:(NOT state-change.log server.log) AND fields.component:(NOT yarn_application kafka_server_gc) AND loglevel:(NOT INFO WARN) message:(+exception -connection)
Was this page helpful?