이 페이지는 아직 한국어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우 언제든지 연락주시기 바랍니다.

Overview

Events search uses the logs search syntax. Like logs search, events search permits:

  • AND, OR, and - operators
  • Wildcards
  • Escape characters
  • Searching tags and facets with key:value
  • Searching within attributes with the @ prefix

Example queries

source:(github OR chef)
Show events from GitHub OR Chef.
host:(i-0ade23e6 AND db.myapp.com)
Show events from i-0ade23e6 AND db.myapp.com.
service:kafka
Show events from the kafka service.
status:error
Show events with an error status (supports: error, warning, info, ok).
availability-zone:us-east-1a
Show events in the us-east-1a AWS availability zone (AZ).
container_id:foo*
Show events from all containers with an ID beginning with foo.
@evt.name:foo
Show the events with attribute evt.name equal to foo.

See Logs Search Syntax for more details.

Further reading