Logging Settings
  • 05 Oct 2022
  • 4 Minutes to read
  • Dark
    Light

Logging Settings

  • Dark
    Light

Article Summary

Advanced Content - Use Caution!
Contact a System Administrator to configure/adjust settings within this article to avoid platform errors and the risk of downtime.

Additionally, Settings.xml should be backed up before making any changes to the Logging Settings

Overview

Through various methods, Administrators are provided options that allow the configuration of various logging parameters such as Log File Size, API Call Timeouts, and Database Timeouts that are recorded in the Decisions Logs.

These settings affect Logs recorded in the Logging Tool (System > Administration > System Tools). The following article covers the respective function and configuration of each Logging Setting.


Available Logging Settings

The following table lists the name of each logging setting, its default value, and a description of what it controls.

Setting NameDefault ValueDescription
LogAPICallsTaking
MoreThanSeconds
5Prompts for a time threshold (seconds) will then be recorded in the log if an API call exceeds.

LogCheckFieldTypesFalseWhen set to True, verifies the types of fields used in WHERE clauses. Logs under CheckTypesLogger category at Debug, Warn, and Error if it finds mismatch levels.
LogDebug/LogInfoFalseWhen set to True, records event types of this level in the log. Since these levels of event types occur frequently, users may experience performance and/or log size issues as the system continuously records them.
LogError/LogFatal/
LogWarn
TrueRecord these event types in the log by default as their True value. Setting this to False stops recording these events in the log.
It is recommended to keep these as True to aid any future troubleshooting. Errors and Fatal Errors are also logged as Windows Events for monitoring by external tools.
LogFileMaxSize10,485,760Prompts for the max file size (bytes) of a log.
The default 10,485,760 bytes equates to a maximum limit of about 10.49 MB.
The maximum configurable limit is maxInt32, 2,147,483,647 bytes, aka 2.14 GB.
LogFlowStepsTaking
MoreThanMilliseconds
1000Prompts for a time threshold (milliseconds) that if a Flow step exceeds will then be recorded in the log.
The default 1,000 value equals one second, so any steps taking longer than this will be in the log.
LogMaxBackups10Prompts for the maximum amount of backups a Log file can create of itself.
For example, the Decisions Logs folder may contain some log files with the same name but a number after the name. These numbered logs are backups made before a new log is created.
LogsDirectoryC:\Users\[Name]\Downloads\LogsPrompts for the file path Installer Logs will reside. This is usually located at the same place as the Installer. This cannot be changed.
LogSqlStatementsTaking
MoreThanSeconds
5Prompts for a time threshold (seconds) will then be recorded in the log if an SQL statement exceeds.
CaptureAspNetLogsFalseEnables Kestrel Access Logging and generates Asp.net core Logs (file typically contains "Microsoft.AspNetCore" in the Logs/webserverlogs.
CaptureW3CLogsFalseEnables Kestrel Access Logging and generates W3C Logs in the Logs/webserverlogs folder. If the setting is not present in Settings.xml, the following may be added to enable it:
<CaptureW3CLogs>true</CaptureW3CLogs> 
AspNetLogsFileCountLimit30The number of files retained for AspNet Log; is used by both CaptureW3CLogs and CaptureAspNetLogs. 
AspNetLogsFileSizeLimit104857600The max size (bytes) of each individual AspNetLog file; is used by both CaptureW3Logs as well as CaptureAspNetLogs. 

Accessing and Editing Settings

Logging Settings can be accessed through one of the following methods:

Though many Settings can be accessed throughout each method, some Settings, such as "LogSQLStatementsTakingMoreThanSeconds", require additional configuration or adjustment via Settings.xml or DecisionsServerInstaller.exe.

Installer

  1. From DecisionsServerInstaller.exe, click EDIT SETTINGS.
  2. Navigate to Settings containing the word "Log". Adjust the Settings as desired in the column to the right of the Setting's name.
    Once Settings have been established as desired, click Save.
  3. After the Settings have been applied, click RESTART SERVICE.

Settings.XML

  1. From C:\Program Files\Decisions\Decisions Server, open Settings.xml in a text editor (ex: Notepad).
  2. Change the value(s) between the respective Logging open/close tags.
    For example, <LogMaxBackups>10</LogMaxBackups> may be changed to <LogMaxBackups>15</LogMaxBackups>.
  3. Save and close the text editor.
  4. Restart Decisions. 

System Settings

  1. From the Studio, navigate to the Settings Folder. 
  2. Open Logging Settings
  3. Select the desired Setting from the Logging Settings list, in this case, File System.

  4. Click on the File System Logging Setting to view the available settings such as Levels, Log Categories, and Advanced containing Max File Size and Backup Limit settings.

  5. When adding a new Log Category, checking the Log To Own File creates a custom Log File for that specific Category.

LogSettings.json

The LogSettings.json file can be found in the C:\Program Files\Decisions\Decisions Server folder in the File System. This file is used to control the behavior of Logging events at the Local level within the File System. Log Category Settings like Category Name or Level can be adjusted in this file.


Enabling Web Server Logs in Self Hosted Environments

  1. From the Local File System, navigate to C:\\Program Files\Decisions\Decisions Server
  2. As an Administrator, Open Settings.XML in the desired text editor. 
  3. Change the <CaptureAspNetLogs>...</CaptureAspNetLogs> value from false to true
  4. Save and close Settings.xml.
  5. Restart Decisions via the RESTART SERVICES button in DecisionsInstaller.exe.

Encrypting Session IDs for Logs

For versions 7.14 and above, Session IDs found in log files can be encrypted within a log file. This is done through the ObfuscateSessionIDInLogs property in the Settings.xml. However, this property will need to be manually added for versions upgrading to 7.14+.

  1. To add the property, run the Decisions Installer.
  2. Once the Installer has opened, select Edit Settings
  3. Locate the ObfuscateSessionIDInLogs property and set the value to True
  4. Save and Restart Decisions.

Once the environment has been restarted, the property will appear in the Settings.xml file. Once enabled, any logs which contain a Session ID will be encrypted.


For further information on Settings, visit the Decisions Forum.



Was this article helpful?