TRIX Search Syntax

A TRIX search is used to perform advanced correlations of events from one or more logs. The correlation is done by connecting multiple log events that share one or more keys into a CEP (Complex Event).
TRIX then allows to run analysis, statistics, anomalies and monitoring on the CEP level (the correlated log events).  

 

The general syntax of a TRIX search is as follows:

search query | trix trix.uniqueIds.fields = ([column1])... search query | trix trix.uniqueIds.fields = ([column1],[column2])... OR search query | trix trix.uniqueIds.fields = ([column1]+[column2])...

where:

search query a simple search that determines which events will be processed by the Trix.

trix.uniqueIds.fields - mandatory - unique fields are the log columns which will be used as the correlation keys to connect several events into a CE (complex event). There are 2 ways to define the correlation key:

  • comma separated list of column names - the Trix will connect events based on any of the specified columns.

  • combined list of column names (connect by +) - the Trix will connect events based on all specified columns.

optional parameters:

 

trix.uniqueSubIds.fields uniqueSubId column name is not mandatory in the complex event (CE). It can open a CE, it can be added to another CE that has a uniqueId key, it can not connect two uniqueId CEs, uniqueSubId should not close an event.

cep.name the display name of each CE step in the flow will be extracted from the specified column.

cep.groups an additional option for display/filter of CE steps extracted from the specified column.

cep.type each CE will be associated to a type.

cep.maxEventLimit max number of events per CE.

cep.timeframe.limit a CE should be closed after the specified limitTime.

cep.event.timeframe.limitFromStart a CE should be closed after the specified limitTimeFromStart from the first CE event.

enrichments.<name>.<type> - allows adding additional columns to the meta of the cep. name - the name of the output column to use - can be any name type - the type of the extraction, currently can be ‘first’ (extracts the first value it encounters in the CE) or ‘all’ (extracts all values).

startRule a filter query to denote a start condition, such as: startRule = (action = login OR operator = login)

endRule a filter query to denote an end condition, such as: endRule = (action = logout OR operator = logout)

 

The TRIX function also returns the following additional values:

 

cep.id - The index of the node.
cep.starttime - Start time of the complex event.
cep.endtime - End time of the complex event.
cep.eventscount - Total amount of events.

cep.time - The duration of the cep.
cep.startEvent - True if the cep has an event that is a start event.
cep.endEvent - True if the cep has an event that is an end event.
cep.key- Complex event key.
cep.name- The value of the name column for the complex event.
cep.groups- List of groups (if defined in query).
cep.groups.count - Number of groups.
cep.type - The value of the types for the complex event.
cep.logIds - List of log ids.
cep.hosts - List of all the hosts.

cep.<name> - Extract custom enrichments from the cep where ‘name’ is the name of the custom enrichment.

cep.fullstate- OPEN/CLOSE/TIME CLOSE/VOLUME CLOSE/CLOSE PARTIAL/UNKNOWN.

Â