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 your enterprise monitoring and log aggregation solutions 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.
Any fields you identify in the logs, or response data, can be excluded. Just include the field-name exactly as it appears in the logs or REST interface, as another value in the DataProcessorConfig.xml file.
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>