Basic Trix Queries
Query | Explanation |
---|---|
* in log.audit | trix trix.uniqueIds.fields = (user) | user column as a unique key - mandatory |
* in log.audit | trix trix.uniqueIds.fields = (user) trix.uniqueSubIds.fields = (pid) | pid column as an optional unique key |
* in log.audit | trix trix.uniqueIds.fields = (user) trix.uniqueSubIds.fields = (pid) cep.name=(session id) | The name for each complex event will be determined by the session id value |
* in log.audit | trix trix.uniqueIds.fields = (user) trix.uniqueSubIds.fields = (pid) cep.name=(session id) cep.groups=(session id) | groups list will be determined by the session id values |
* in log.audit | trix trix.uniqueIds.fields = (user) trix.uniqueSubIds.fields = (pid) cep.name=(session id) cep.groups=(session id) type=(thread) | types list will be determined by the thread values |
...
Query | Explanation |
---|---|
* in log.audit | trix trix.uniqueIds.fields = (user) | where cep.time < 10000 | Trix events that took more than 10 seconds (time is in milliseconds) |
* in log.audit | trix trix.uniqueIds.fields = (user) | avg cep.time as Average, min cep.time as Min, max cep.time as Max | display Average in time format, Min in time format, Max in time format | Average, Minimum and Maximum time of the Trix events |
* in log.audit | trix trix.uniqueIds.fields = (user) cepNode.timeframe.limit = (5 seconds) | The complex event will be closed after limit-Time has expired |
* in log.audit | trix trix.uniqueIds.fields = (user) cepNode.event.timeframe.limitFromStart = (10 minutes) | Only events which are less than limitTimeFromStart from the first event will be added to the transaction. |
...
Query | Explanation |
---|---|
* in log.audit | trix trix.uniqueIds.fields = (user) cepNode.maxEventLimit=3 | Max number of events for each complex event |
* in log.audit | trix trix.uniqueIds.fields = (user) startRule = (Event Description contains session has started) endRule = (Event Description contains was terminated) | Start and End conditions. To filter only the ceps which stand by the start and end conditions, add the following: | where hasstartevent = true and hasendevent = true |
* in log.audit | trix trix.uniqueIds.fields = (user) groups = (Thread) enrichments.message.all = (message) | where cep.message contains exception or error | Filter of CE flows that contains in their message column ‘error’ or ‘exception’. enrichment = recommended when there are columns that their contents may contain values to be filtered (errors, exceptions, etc.) |
* in log.audit | trix trix.uniqueIds.fields = (user) groups = (priority) | where cep.groups = ERROR or FATAL | Filter of CE flows that their priority column equals ‘ERROR’ or ‘FATAL’. enrichment = recommended when there are columns that their contents may contain values to be filtered (errors, exceptions, etc.) |
* in log.secure | trix trix.uniqueIds.fields = (user+pid) endRule = (message contains Connection closed by invalid user OR Disconnecting invalid user OR Disconnected from invalid) cep.name = User | where cep.endEvent = true | Linux CEPs - Failed Logins |
* in log.security | trix trix.uniqueIds.fields = (account name) startRule = (event contains 4625) groups = (event) | where cep.startEvent = true | Windows events CEPs - Failed Logon Attempts |
Complex Trix Queries
...
Extra Fields | Explanation |
---|---|
enrichments.pid.first = (pid) enrichments.pid.all = (context) |
|
Code Block |
---|
* IN log.audit | trix trix.uniqueIds.fields = (user) trix.uniqueSubIds.fields =(pid) startRule = (Event Description contains User logged) endRule = (Event Description contains terminated) cepNode.maxEventLimit = 50 cepNode.timeframe.limit = (5 minutes) cep.name = (user) cep.groups = (type) cep.type = (category) enrichments.pid.all = (pid) enrichments.context.all = (context) | count | group by cep.pid, cep.context |
...