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
JAVA_OPTS="--add-opens=java.base/sun.nio.ch=ALL-UNNAMED"
MAIN_CLASS="deltix.ember.connector.cme.cgw.CgwAuditLogGenerator"
ARGS="-home /var/lib/emberwork -plugin CME-GGW -session S10 -from 20241025 -to 20241027"

docker compose exec ember java $JAVA_OPTS -cp /opt/deltix/ember/lib/*:/opt/deltix/ember/lib/custom/* $MAIN_CLASS $ARGS
  • Windows
set EMBER_INSTALL=C:/ember
set EMBER_WORK=C:/ember-work
set JAVA_OPTS=--add-opens=java.base/sun.nio.ch=ALL-UNNAMED
set ARGS=-home %EMBER_WORK% -plugin [connector_id] -session [cme_session_id] -from [date] -to [date]

java %JAVA_OPTS% -cp %EMBER_INSTALL%/lib/*;%EMBER_INSTALL%/lib/custom/* \
deltix.ember.connector.cme.cgw.CgwAuditLogGenerator %ARGS%