Skip to main content

Event History

Home > Select Project > Alert > Event History

Event History allows you to efficiently search, view, and analyze detailed information about various events that occur in the system. Using Elasticsearch DSL queries, you can accurately and quickly find events that match your criteria.

Main Screen

Clicking the event title in the search results navigates to a screen where you can analyze the details of the time zone in which the event occurred. This allows you to comprehensively understand the circumstances before and after the event.

set-event-history

Column icon Column Settings

You can show or hide desired columns. To configure columns:

  1. Click the Column icon Column Settings button at the top right of the Event History screen.

  2. Select the columns to show or hide.

    • You can change the order of the columns in the visible items.

    • You can search for specific columns in the Column Name Search field.

    ColumnDescription
    Event NameTitle of the event
    MessageMessage or snapshot of the event
    Event StatusCurrent status of the event
    Agent NameName (Oname) of the agent where the event occurred
    - Blank if not related to a specific agent
    Agent GroupType (OkindName) of the agent where the event occurred
    - Blank if not related to a specific agent
    Agent NodeServer (OnodeName) of the agent where the event occurred
    - Blank if not related to a specific agent
    Event TimeTime the event occurred
    Resolved TimeTime the event was resolved
    Displayed as - if unresolved
  3. After configuring, click Confirm to apply the settings.

Download icon Download CSV

You can download the data as a CSV file.

Show Only Ongoing Events

Adds a filter to show only events with ON status in the current query. The query is:

Status: ON and Stateful: true
  • Accurate Search: Specify exact criteria to find relevant events
  • Complex Conditions: Search multiple fields simultaneously
  • Flexible Patterns: Supports wildcard and partial matching
  • Fast Performance: High-speed search using indexed data

Searchable Fields

Search is case-insensitive.

  • Field Tag: Indicates event types supporting the field

  • Field Type: Data type of the field

    • : Number
    • : String
    • : Boolean
    • : Date

Event Info Fields

FieldTypeDescriptionExample
TitleStringEvent title"Database Connection Error"
OffTitleStringRecovery title"RECOVERED: Database Connection Error"
MessageStringEvent message"Connection timeout occurred"
OffMessageStringRecovery message"RECOVERED: Connection timeout occurred"
LevelStringCurrent event levelCritical, Warning, Info
OriginLevelStringOriginal event levelCritical, Warning, Info
StatusStringEvent statusON, OFF, CANCEL, ACKNOWLEDGE, MAINTENANCE, DISABLED
ActCountNumberAction count2
MetricNameStringMetric name"memory"
MetricValueStringMetric value"85.5"
OffValueStringRecovery value"72.8"
MetricThresholdStringThreshold"80"
alertTypeStringEvent type"BASIC", "METRICS", "TRANSACTION"
alertIdStringRule ID"zf3uojer0fv4v7"

Type-Specific Fields

FieldTypeEvent TypeDescriptionExample
eventRuleStringBasic, MetricsRule that triggered event"memory ≥ 80"
fieldStringRealtime LogLog key"content"
keywordStringRealtime LogSearch keyword"Error"
logCategoryStringRealtime LogLog category"AppLog"
logContentStringRealtime LogLog content"...log text..."

Target Fields

FieldTypeDescriptionExample
OidNumberAgent ID-98765432
OnameStringAgent name"web-server-01"
OkindNumberAgent type ID867318026
OkindNameStringAgent type name"web-server"
OnodeNumberNode ID334634079
OnodeNameStringNode name"production-node-1"

Unique Event Fields

FieldTypeDescriptionExample
IdNumberEvent ID5768121
UUIDStringEvent UUID"550e8400-e29b-41d4-a716"

State/Flag Fields

FieldTypeDescriptionExample
StatefulBooleanStateful eventtrue, false
DisabledBooleanIs disabledtrue, false
EscalationBooleanEscalatedtrue, false
SystemEventBooleanSystem-generatedtrue, false

Query Examples

Note

For more on syntax, see WhaTap log search query syntax

  • Events that contain the string "Database Connection"
title: "Database Connection"

Retrieves events that include at least one of the specified options.

  • Events where the title includes either "Database" or "Connection"
title: Database Connection
  • Events where the current level is either Info or Warning
level: info warning

You can search using wildcards.

  • Find events that occurred on specific agents by name pattern
oname: web-*-prod
  • Find events where the title ends with 'Connection'
title: *Connection

4. Complex Conditions

You can combine multiple conditions to perform a precise search.

  • Events with level Critical and title containing Database
level: critical and title: Database
  • Warning or Critical events from a specific agent
oname: web-server-01 and level: Warning Critical

5. OR Conditions

You can search for events that satisfy any of the given conditions.

  • Find events where the title or message contains a specific keyword
title: Connection or message: Connection

6. NOT Conditions

You can exclude certain conditions from the search.

  • Find all events except those with Info level
not level: info