Software AG Products 10.5 | Administering Integration Server | Removing User Data from Integration Server | Removing Personal Data from Log Files | Removing Personally Identifiable Information from the Service Log
 
Removing Personally Identifiable Information from the Service Log
In the service log, the service audit log record contains the user name of the user executing the service. Where that data is located and how to remove it depends on whether the service log destination is a file or a database.
If the service log is a
Use the following to locate and delete user data
File
File Location: Software AG_directory \ Integration Server_directory \instances\instance_name\logs
File Name: WMSERVICE_serverStartupTimestamp.log
userid is 64-characters long. It is logged from column 1024.
Use a text editor to perform a search and replace for the userid. For example, you could search the service log files for the user name and replace the user name with an anonymous string or a blank string.
Database
If the Service audit logger is configured to log to an external database identified by the ISCoreAudit functional alias, Integration Server writes log message into WMSERVICE table of the ISCoreAudit database.
The USERID column contains the userid.
Use the following SQL statement to remove the data:
DELETE FROM WMSERVICE WHERE USERID = 'username'
Where username is the user account to delete from the log.