Event Log
The Event Log component is intended for viewing and managing server events in the real-time mode. It also provides access to event history and allows to acknowledge events.
Event Log consists of two main parts: Current Events and Event History .
Both parts have a toolbar that helps to access frequently used functions. In the left part of both toolbars there is a drop down box that allows to select an Event Filter. Initially, the selected filter is <Empty Filter>
which means that no events are shown.
In some cases Event Log component shows a predefined set of event types. In this case list of Event Filters and related buttons ("Reactivate Filter", "Configure Filter") are not available.
It is possible to sort events. To enable sorting, click on the column header. Subsequent clicks will change sorting order for this column between ascending and descending.
When the event list reaches a certain number of entries, a dropdown menu appears to select the maximum number of events to display per page, with pagination buttons appearing as necessary.
Clicking on a button in the Data column next to any event opens Data Table associated with it in a Data Table Editor.
![]() | Event Log uses Date Pattern, Time Pattern and Timezone settings specified in User Account Properties to properly convert and render different timestamps. All date/time values are shown in active user's timezone. |
Public Variables (Properties)
[ ? ]
The Event Log component has the following basic properties and property groups that are common to all components:
Name, Advanced Properties, Container Properties, Styles, Preloader, Events, Bindings, Kebab Menu.
Inherited Variables (Properties)
Event Log component is internally based on Data Table component, so it inherits its shared properties.
Mode
The event log component can work in two principal modes:
Custom Event List. In this mode, it shows only events specified by Events property. Primary visible columns are defined by Event Log component properties (see below). No additional fields are shown, and no filtering/highlighting is performed.
Event Filter. In this mode Event Log activates a server-side event filter specified by Event Filter setting and uses this filter to select and highlight events. Column model is also built according to the filter configuration.
Variable Name: | mode |
Records: | 1 |
Record Format:
Field Name | Field Type | Field Description |
mode | Integer | Mode |
Events
This property defines which event types should be shown when Mode is set to Custom Event List
.
Variable Name: | eventList |
Records: | 0..unlimited |
Record Format:
Field Name | Field Type | Field Description |
mask | String | Context Mask. Context or context mask for event selection. Only events occurred in contexts matching this mask are shown. |
event | String | Event. Name of the event to display in the event log. |
Sections
Defines which sections will be displayed by the component:
Both Sections
Current Events
Event History
Variable Name: | sections |
Records: | 1 |
Record Format:
Field Name | Field Type | Field Description |
sections | Integer | Sections |
Active Section
Defines which section will be active by default when Both Sections option is selected in Sections property.
Variable Name: | activeSection |
Records: | 1 |
Record Format:
Field Name | Field Type | Field Description |
activeSection | Integer | Active Section |
Preload Event History
If enabled, automatically preloads event history section content when the component is loaded.
Variable Name: | preloadHistory |
Records: | 1 |
Record Format:
Field Name | Field Type | Field Description |
searchIcon | Boolean | Preload Event History |
Show Context Names
Flag defining visibility of Context column.
Variable Name: | showContexts |
Records: | 1 |
Record Format:
Field Name | Field Type | Field Description |
showContexts | Boolean | Show Context Names |
Show Event Names
Flag defining visibility of Event column.
Variable Name: | showNames |
Records: | 1 |
Record Format:
Field Name | Field Type | Field Description |
showNames | Boolean | Show Event Names |
Show Event Levels
Flag defining visibility of Level column.
Variable Name: | showLevels |
Records: | 1 |
Record Format:
Field Name | Field Type | Field Description |
showLevels | Boolean | Show Event Levels |
Show Event Acknowledgements
Flag defining visibility of Acknowledgements column.
Variable Name: | showAcknowledgements |
Records: | 1 |
Record Format:
Field Name | Field Type | Field Description |
showAcknowledgements | Boolean | Show Event Acknowledgements |
Show Event Enrichments
Flag defining visibility of Enrichments column.
Variable Name: | showEnrichments |
Records: | 1 |
Record Format:
Field Name | Field Type | Field Description |
showEnrichments | Boolean | Show Event Enrichments |
Show Event Data
Flag defining visibility of Data column.
Variable Name: | showData |
Records: | 1 |
Record Format:
Field Name | Field Type | Field Description |
showData | Boolean | Show Event Data |
Current Events
This property allows to specify a custom event instance list to display in the Current Events event log section when Mode is set to Custom Event List
.
Variable Name: | currentSection |
Records: | 0..unlimited |
Record Format:
Field Name | Field Type | Field Description |
creationtime | Data | Event creation timestamp. |
name | String | The event name. |
context | String | The name of corresponding context. |
level | Integer | The event level. |
data | Data Table | The event data. Data table of any format can be inserted here. |
acknowledgements | Data Table | The event acknowledgement. This nested data table contains a few fields:
|
enrichments | Data Table | The event enrichment. This nested data table contains few fields:
|
Event History
This property allows to specify a custom event instance list to display in the Event History event log section when Mode is set to Custom Event List
.
Variable Name: | historySection |
Records: | 0..unlimited |
Record Format:
Field Name | Field Type | Field Description |
creationtime | Data | Event creation timestamp. |
name | String | The event name. |
context | String | The name of corresponding context. |
level | Integer | The event level. |
data | Data Table | The event data. Data table of any format can be inserted here. |
acknowledgements | Data Table | The event acknowledgement. This nested data table contains few fields:
|
enrichments | Data Table | The event enrichment. This nested data table contains few fields:
|
Public Events
[ ? ]
Inherited Events
Event Log component is internally based on Data Table component, so it inherits its shared events.
Event Added to Log
This Event Log's event is fired once a new event is added to the log.
Event Name | eventAddedToLog |
Records: | 1 |
Record Format:
Field Name | Field Type | Notes |
eventData | Data Table | Event Data. Data of the newly added event. |
Was this page helpful?