Hyland.Logging can be configured to send information to Splunk as well as the Diagnostics Console by modifying the .config file of the server. To configure Hyland.Logging to send information to Splunk:
- Open the .config file.
- Locate the Hyland.Logging section of the file.
-
In the Routes sub-section, add the following new route:
<Route name="Logging_Local_Splunk" > <add key="Splunk" value="http://localhost:SplunkPort"/> <add key="SplunkToken" value="SplunkTokenNumber"/> <add key="DisableIPAddressMasking" value="false" /> </Route>
- Replace the localhost value with the address of the host if not local.
- Replace the SplunkPort value with the port used by Splunk.
- Replace the SplunkTokenNumber value with the Splunk token.
- Add any additional keys for routing levels or profiles to this route as desired.
-
In the AuditRoutes sub-section, add the following new
route:
<Route name="Audit_Local_Splunk" > <add key="Splunk" value="http://localhost:SplunkPort"/> <add key="SplunkToken" value="SplunkTokenNumber"/> <add key="DisableIPAddressMasking" value="false" /> </Route>
- Replace the localhost value with the address of the host if not local.
- Replace the SplunkPort value with the port used by Splunk.
- Replace the SplunkTokenNumber value with the Splunk token.
- Add any additional keys for routing levels or profiles to this route as desired.
- Save the file and restart the application.