Configuration parameter | Meaning |
---|---|
Common\Journal | General parameter for configuring the database journal. |
Common\Journal\LifeTime |
Use this configuration parameter to specify the maximum amount of time (in days) that a database journal entry can be stored in the database. Older entries are deleted from the database. |
Common\Journal\LifeTime\D |
This configuration parameter contains retention period (in days) for entries with type 'Debug'. |
Common\Journal\LifeTime\E |
This configuration parameter contains retention period (in days) for entries with type 'Error'. |
Common\Journal\LifeTime\I |
This configuration parameter contains retention period (in days) for entries with type 'Info'. |
Common\Journal\LifeTime\T |
This configuration parameter contains retention period (in days) for entries with type 'Trace'. |
Common\Journal\LifeTime\W |
This configuration parameter contains retention period (in days) for entries with type 'Warning'. |
Common\Journal\LoginAudit | Logs successful One Identity Manager logins. |
Common\Journal\Delete |
This configuration parameter allows configuration of deletion behavior for system messages. |
Common\Journal\Delete\BulkCount |
This configuration parameter contains the number of entries to be deleted in an operation. |
Common\Journal\Delete\TotalCount |
This configuration parameter contains the total number of entries to be deleted in one processing run. |
The database journal is used to store information, warning and error messages from different components of One Identity Manager, for example, DBQueue Processor, Configuration Wizard or One Identity Manager Service. Actions in the program "Job Queue Info", such as re-enabling process steps, are also written to the database journal.
To log error in process handing in the database journal
To log One Identity Manager successful logins
To delete log entries in the database journal
One Identity Manager provides various options for extending its log. The log can be configured for each One Identity Manager component.
Each One Identity Manager component supports message logging using the integrated NLog functionality. For an exact description and functionality, see the online help (http://nlog-project.org/).
Setting for logging with Nlog are made in the "nlog" section in the One Identity Manager component's configuration files. Use the variable appName to pass the One Identity Manager component names. The configuration of the logs is defined in the global configuration file globallog.config. This file is referenced in the One Identity Manager component's configuration files.
In the One Identity Manager default installation, the log files are written to the directory %LocalAppData%\One Identity\One Identity Manager\<appName> under the name <appName>.log, where appName is the name of the One Identity Manager component. All messages with a minimum information level of "info", are recorded in the <appName>.log. The files are kept for 7 days and backed up daily. All messages with the information level "fatal" are additionally recorded in the event log for the source One IdentityOne Identity Manager <appName>.
<configuration>
<configSections>
...
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/>
</configSections>
...
<nlog autoReload="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<variable name="appName" value="Manager"/>
<include file="${basedir}/globallog.config" ignoreErrors="true"/>
</nlog>
...
</configuration>
The crash recorder saves the last 128 message from the "Debug" level and shows them in an error message window. The crash recorder is configured through the One Identity Manager tool's configuration file.
Example: Configuration file entry for a One Identity Manager component
<configuration>
<configSections>
...
<section name="connectionbehaviour" type="System.Configuration. NameValueSectionHandler" />
</configSections>
...
<appSettings>
<add key="CrashRecorderBuffer" value="128" />
<add key="CrashRecorderLevel" value="Error" />
</appSettings>
<connectionbehaviour>
...
</connectionbehaviour>
...
</configuration>
If the variable CrashRecorderBuffer is set to the value 0, the crash record functionality is disabled. Permitted values for the CrashRecorderLevel are "Debug", "Error", "Fatal", "Info", "Off", "Trace" and "Warn".
© 2021 One Identity LLC. ALL RIGHTS RESERVED. Feedback Terms of Use Privacy