FintechOS Platform Logging
FintechOS Platform logs all CRUD operations executed in the platform, by default, in a separate database schema named EbsLogs.UniversalLog.
Database administrators can restrict read access for this schema and grant insert rights only for the SQL login used by the FintechOS Platform.
How to Configure the Logging of CRUD Operations
To configure this feature, go in Vault and set the feature-universal-logging setting, as desired. By default, it is set to 0, that is, the feature is disabed.
In Vault secrets:
Key Path | Key Name | Key Value |
---|---|---|
kv/<environment>/<application>/app-settings | feature-universal-logging | 0|1|false|true |
(Deprecated) Add key in the web.config files:
Copy
<configuration>
<app-settings>
...
<add key="feature-universal-logging" value="0|1|false|true"/>
</app-settings>
</configuration>