Lamaxu supports a framework to allow you to perform filtering, and transformation, on collected data for output to a log file.
The outputted data can then be consumed by enterprise monitoring and log aggregation solutions such as SPLUNK or Elastic, as required.
The framework is extremely powerful and can be customized to output collected information multiple ways. The default configuration available out of the box is sufficient for most use cases however you may configure it as required with the assistance of QueueMetrix support.
Default Property Exclusion List
The Default exclusion list is contained in the ${LAMAXU_HOME}/conf/DataProcessorConfig.xml file
<property name="configurations"> <set> <!-- For all DATA, exclude some attributes. --> <bean class="com.qm.lamaxu.domain.AttributeConfiguration"> <property name="dataDescription"> <value>ALL</value></property> <!-- The set of attributes to exclude. --> <!-- The pre-set values below can be removed if required and --> <!-- have been filtered to reduce the SPLUNK license costs when indexing --> <property name="attributes"> <set> <value>UOWIDENTIFIER</value> <value>ACTCONN</value> <value>MAXSHCNV</value> <value>CHSTATI</value> <value>COMPRATE</value> <value>SSLCERTI</value> <value>RVERSION</value> <value>STATUS_TYPE</value> <value>EXITTIME</value> <value>SSLKEYDA</value> <value>MCAUSER</value> <value>CHSTADA</value> <value>MONCHL</value> <value>SSLPEER</value> <value>HBINT</value> <value>CURSHCNV</value> <value>SUBSTATE</value> <value>JOBNAME</value> <value>SSLKEYTI</value> <!--SSL_KEY_RESET_TIME --> <value>LOCLADDR</value> <value>SECPROT</value> <value>MEDIALOG</value> <value>INSTPATH</value> <value>CURRENT_LOG_EXTENT_NAME</value> <value>RESTART_LOG_EXTENT_NAME</value> <value>MQIAMO_MONITOR_KB/MQIACF_PROCESS_ID</value> <value>CONTROL</value> <value>SUBTYPE</value> <value>SUBUSER</value> <value>RESMTIME</value> </set> </property> <property name="attributeConfigurationMode"> <value>EXCLUDE</value> </property> </bean> </set> </property>