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 key | Required | Description |
---|---|---|
-home | Yes | Path to EMBER work directory |
-plugin | Yes | Connector ID |
-session | Yes | CME Session ID |
-out | No | Path where logs will be generated. Default is %EMBER_WORK%\audit |
-from | No | Date from which files should be accepted. If skipped, current day is applied. Ignored when -files is specified. Format: yyyyMMdd |
-to | No | Date until which files will be accepted. If skipped, current day is applied. Ignored when -files is specified. Format: yyyyMMdd |
-files | No | List 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%