public interface CentralLogService
| Modifier and Type | Method and Description |
|---|---|
void |
finalizeLogging(long pid)
Notifies the server that logging is done on the client.
|
java.lang.Integer |
getSessionId()
Return the session ID.
|
java.lang.String |
getUserId()
Return the user ID.
|
void |
publish(CentralLogRecord logRecord)
Publishes the log record.
|
void |
setFwdLogfile(java.lang.String fwdLogfile)
Sends the FWD client log file path to the server.
|
void |
setupFileHandler(java.lang.String filePath,
java.lang.Integer fileLimit,
java.lang.Integer fileCount,
long pid,
java.lang.String userOS,
java.lang.String appServerName)
Creates and configures a file handler for the specified client process.
|
void publish(CentralLogRecord logRecord)
logRecord - A log record.void setupFileHandler(java.lang.String filePath,
java.lang.Integer fileLimit,
java.lang.Integer fileCount,
long pid,
java.lang.String userOS,
java.lang.String appServerName)
filePath - The path to the log file.fileLimit - The file limit, or the max bytes in a log file before rotation.fileCount - The file count, or the max number of files before file overwrite starts.pid - The process id of the client.userOS - The OS user.appServerName - The appServer name.void finalizeLogging(long pid)
pid - The client process ID.java.lang.Integer getSessionId()
java.lang.String getUserId()
void setFwdLogfile(java.lang.String fwdLogfile)
fwdLogfile - The FWD client log file path.