Skip to main content

Audit Logs

CME Audit Log

CME iLink 3 connector supports Audit Log Generation capability as prescribed by CME using special AuditLogGenerator utility. This tool generates Audit Trail document from connector's logs.

Tool supports the following parameters;

Command keyRequiredDescription
-homeYesPath to EMBER work directory
-pluginYesConnector ID
-sessionYesCME Session ID
-outNoPath where logs will be generated. Default is %EMBER_WORK%\audit
-fromNoDate from which files should be accepted. If skipped, current day is applied. Ignored when -files is specified. Format: yyyyMMdd
-toNoDate until which files will be accepted. If skipped, current day is applied. Ignored when -files is specified. Format: yyyyMMdd
-filesNoList of files that should be converted.

Usage example:

  • Docker Compose
ARGS="-home /var/lib/emberwork -plugin CME-GGW -session S10 -from 20241025 -to 20241027"

docker compose exec ember /opt/deltix/ember/lib/custom/tools/cme-cgw-audit-log $ARGS
  • Windows
set EMBER_INSTALL=C:/ember
set EMBER_WORK=C:/ember-work
set ARGS=-home %EMBER_WORK% -plugin CME-GGW -session S10 -from 20241025 -to 20241027

%EMBER_INSTALL%\lib\custom\tools\cme-cgw-audit-log.bat %ARGS%