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
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%