Skip to main content

Event History and Monitoring

Home > Select Project > Alert icon Alert > Event History

Event History allows you to view events that have occurred in the project and analyze their detailed information. It supports Elasticsearch DSL queries, enabling you to find events that match specific conditions quickly and accurately.

Viewing Event History

Click the event title in the search results to move to a screen where you can analyze detailed data for the time period when the event occurred. This allows you to comprehensively understand the situation before and after the event.

  1. Go to Alert > Event History.

  2. In the Event History screen, use Time Selection to set the period for viewing event records.

  3. Enter a query in the filter input field and click the [ Magnifying Glass ] button.

    • If no query is entered, all events are displayed.

Column icon Column Settings

You can choose which columns to display or hide.

  1. In the Event History screen, click the [ Column icon Column Settings ] button at the top left.

  2. In the Column Settings window, select the columns you want to show or hide.

    • You can change the column order in Displayed Items.
    • You can search for specific columns using the Column Name Search field.
    Column ItemDescription
    Event NameThe title of the event
    MessageThe event message or snapshot information
    Event StatusThe current status of the event
    Agent NameThe name (Oname) of the agent where the event occurred
    - Displayed as blank if the event is not associated with a specific agent
    Agent GroupThe agent type (OkindName) where the event occurred
    - Displayed as blank if the event is not associated with a specific agent
    Agent NodeThe server (OnodeName) of the agent where the event occurred
    - Displayed as blank if the event is not associated with a specific agent
    Event Occurred TimeThe time when the event occurred
    Event Resolved TimeThe time when the event was resolved
    - Displayed as - for events without a resolved state
  3. After completing the settings, click the [ Confirm ] button to apply the column configuration.

Download icon CSV Download

You can download the query results as a CSV file.

  1. Go to Alert > Event History and click the [ CSV ] button.

  2. The list of events that match the current filter conditions is saved as a CSV file.

View Only Events in Progress

You can view only events that are currently in progress.

  1. Go to Alert > Event History and click the [ View Only Events in Progress ] button.

  2. The following condition is automatically added to the filter query and applied to the search.

    Stateful: true and Status : "ON"
  • Precise Search: Specify exact conditions to retrieve only the events you need
  • Composite Conditions: Search across multiple fields at once to handle complex conditions in a single query
  • Flexible Patterns: Supports various search methods such as wildcards and partial matches
  • High Performance: Fast searches powered by indexed data

Searchable Fields

Field names and values are not case sensitive.

  • Field Name Tag: Event types that support the field

  • Field Type: The data type of the field

    • Number icon: Number

    • Text icon: String

    • Boolean icon: Boolean

    • Calendar icon: Date

Event Information Fields

Field NameTypeDescriptionExample Value
TitleStringEvent title"Database Connection Error"
OffTitleStringEvent recovery title"RECOVERED: Database Connection Error"
MessageStringEvent message"Connection timeout occurred"
OffMessageStringEvent recovery message"RECOVERED: Connection timeout occurred"
LevelStringCurrent event levelCritical, Warning, Info
OriginLevelStringOriginal event levelCritical, Warning, Info
StatusStringEvent statusON, OFF, CANCEL, ACKNOWLEDGE, MAINTENANCE, DISABLED
ActCountNumberNumber of occurrences2
MetricNameStringMetric name"memory"
MetricValueStringMetric value"85.5"
OffValueStringRecovery value"72.8"
MetricThresholdStringThreshold value"80"
alertTypeStringEvent type"BASIC", "METRICS", "TRANSACTION", etc.
alertIdStringUnique identifier of the event rule"zf3uojer0fv4v7"

Type-specific Supported Fields

Note

These fields are supported only for specific event types. If the event type does not match, the value may be empty.

Field NameTypeEvent TypeDescriptionExample Value
eventRuleStringBasic, MetricsEvent trigger rule"memory ≥ 80"
fieldStringReal-time LogLog search key"content"
keywordStringReal-time LogLog search value"Error"
logCategoryStringReal-time LogLog category"AppLog"
logContentStringReal-time LogLog content"00:00000:00009:2025/04/06 23:03:52.55 server Error: 1601, Severity: 17, State: 3\n00:00000:00009:2025/04/06 23:03:52.55 server There are not enough 'user connections' available to start a new process."

Target Fields

Field NameTypeDescriptionExample Value
OidNumberAgent unique identifier-98765432
OnameStringAgent name"web-server-01"
OkindNumberAgent type unique identifier867318026
OkindNameStringAgent type name"web-server"
OnodeNumberAgent node unique identifier334634079
OnodeNameStringAgent node name"production-node-1"

Unique Event Fields

Field NameTypeDescriptionExample Value
IdNumberUnique identifier of the event5768121
UUIDStringUnique event identifier"550e8400-e29b-41d4-a716"

State / Flag Fields

Field NameTypeDescriptionExample Value
StatefulBooleanWhether the event is state basedtrue, false
DisabledBooleanWhether the event is disabledtrue, false
EscalationBooleanWhether escalation is appliedtrue, false
SystemEventBooleanWhether it is a system eventtrue, false

Query Syntax by Search Type

Note

For the basic search syntax, refer to the WhaTap log search query syntax documentation.

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

Retrieves events that include any one of the specified values.

title: Database Connection
Events whose current event level is Info or Warning
level: info warning

You can search using patterns with wildcards.

Find events that occurred on specific agents using a name pattern
oname: web-*-prod 
タイトルが Connection で終わるイベントを検索
title: *Connection

4. Complex Condition Search

You can combine multiple conditions to perform precise searches.

Events with a Critical level and a 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 Condition Search

Retrieves events that satisfy at least one of the specified conditions.

Events where the title or message contains a specific keyword
title: Connection or message: Connection

6. Exclusion Conditions

You can exclude specific conditions from the search.

All events except those with an Info level
not level: info