Observability
Observability allows the FintechOS Platform to generate log events and push those logs to various destinations such as system consoles, files, log servers, or Application Performance Management (APM) services.
Send log messages to the system console
Configuration in the Configuration Manager:
Key Path | Key Name | Key Value |
---|---|---|
kv/<environment>/<application>/app-settings | console-logging | enabled=0; logLevel=Debug; |
Parameter | Description |
---|---|
enabled |
|
logLevel | Minimum severity level for the logged messages. Available options are: Verbose, Debug, Info, Warning, Error, and Fatal. |
<app-settings>
...
<add key="console-logging" value="enabled=0; logLevel=Debug;" />
...
</app-settings>
Send log messages to local file storage
Configuration in the Configuration Manager:
Key Path | Key Name | Key Value |
---|---|---|
kv/<environment>/<application>/app-settings | file-logging | enabled=1; logLevel=Debug; flushInterval=1s; fileName=trace_roll_.log; retainedFileCount=99; rollSizeBytes=31457280; |
Parameter | Description |
---|---|
enabled |
|
logLevel | Configures the minimum severity level for the logged messages. Available options are: Verbose, Debug, Info, Warning, Error, and Fatal. |
flushInterval | If provided, a full disk flush will be performed periodically at the specified interval in seconds. E.g: 1s, 5s, 20s |
fileName | Name of the log file. The file will be stored in the folder where the application starts. |
retainedFileCount | Maximum number of log files that will be retained, including the current log file. For unlimited retention, set it to null. The default value is 31. |
rollSizeBytes | If defined, a new log file is created when the log file size reaches the designated number of bytes. New log files will have an index counter appended in the format _NNN, with the initial log file given no index counter. |
<app-settings>
...
<add key="file-logging" value="enabled=1; logLevel=Debug; flushInterval=1s; fileName=trace_roll_.log; retainedFileCount=99; rollSizeBytes=31457280;" />
...
</app-settings>
Send log messages to a Seq structured log server
Configuration in the Configuration Manager:
Key Path | Key Name | Key Value |
---|---|---|
kv/<environment>/<application>/app-settings | seq-logging | enabled=0; apiKey={seq instrumentation key}; logLevel=Debug; flushInterval=1s; serverUrl=http://localhost:5341; maxEventCount=100000; |
Parameter | Description |
---|---|
enabled |
|
apiKey | Seq API key that authenticates the client to the Seq server. |
logLevel | Minimum severity level for the logged messages. Available options are: Verbose, Debug, Info, Warning, Error, and Fatal. |
flushInterval | Time to wait (in seconds) between checking for event batches. |
serverUrl | Base URL of the Seq server that log events will be sent to. |
maxEventCount | Maximum number of events that will be held in-memory while waiting to ship them to Seq. Beyond this limit, events will be dropped. Default: 100000. |
<app-settings>
...
<add key="seq-logging" value="enabled=0; apiKey={seq instrumentation key}; logLevel=Debug; flushInterval=1s; serverUrl=http://localhost:5341; maxEventCount=100000;" />
...
</app-settings>
Send log messages to an Azure Application Insights service
You can use the Azure Application Insights application performance management service (subscription required) to collect logging information. If you want to centralize your logs, you can configure multiple machines on the same cluster to send their logging information to the same Application Insights subscription.
Logs saved to the local file storage are visible instantly. Messages sent to Azure Application Insights might be visible after a short delay ranging from seconds to minutes.
Configuration in the Configuration Manager:
Key Path | Key Name | Key Value |
---|---|---|
kv/<environment>/<application>/app-settings | azure-appinsights-logging | enabled=0; apiKey={app insights instrumentation key}; logLevel=Verbose; flushInterval=1m; |
Parameter | Description |
---|---|
enabled |
|
apiKey | Instrumentation key value that it is used by default by all Microsoft.ApplicationInsights.TelemetryClient instances created in the logger. |
logLevel |
Minimum severity level for the logged messages. Available options are: Verbose, Debug, Info, Warning, Error, and Fatal. IMPORTANT!
Specifying a log level greater than Warning, may flood Azure Application Insights with irrelevant information. It is not recommended to enable Azure Application Insights logging on development environments. |
flushInterval | Maximum telemetry batching interval. Once the interval expires, Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel serializes the accumulated telemetry items for transmission. |
<app-settings>
...
<add key="azure-appinsights-logging" value="enabled=0; apiKey={app insights instrumentation key}; logLevel=Verbose; flushInterval=1m;" />
...
</app-settings>
Configure Azure Application Insights telemetry
Configuration in the Configuration Manager:
Key Path | Key Name | Key Value |
---|---|---|
kv/<environment>/<application>/app-settings | azure-appinsights-telemetry-logging |
|
Deactivating telemetry does not affect logging.
<app-settings>
...
<add key="azure-appinsights-telemetry-logging" value="0" />
...
</app-settings>
Logging context
In addition to the actual log event, developers can track the context in which a log event occurred (machine name, portal profile, user context regional settings, thread ID, etc.), as well as define their own custom log context properties via server-side scripting. For more information, see the Innovation Studio User Guide.
Log Digital Solution Package import progress and execution time
Starting with v22.1.11, follow the below steps in Configuration Manager to enable logging of import progress and execution time for some steps in digital solution packages:
Key Path | Key Name | Key Value |
---|---|---|
kv/<environment>/<application>/app-settings | core-setting-enable-dsp-import-instrumentation |
|
If the key is missing from app settings, then the functionality is disabled. This setting is used only in Studio, it is not available if it is set on Portals.
When the functionality is enabled a new file named dspImport-<uniqueid>.log
is saved in the <appRoot>/logs/DSPImport
folder for each Digital Solution Package import.