如何在weblogic访问日志中记录会话ID

时间:2009-11-11 14:16:42

标签: java logging weblogic sessionid

是否可以在WebLogic 8.1.6的访问日志中记录会话ID?

1 个答案:

答案 0 :(得分:7)

是的,可以使用Extended Log FormatCustom Field Identifiers。我正在提供一个自定义字段的Java实现,打印下面的会话ID。按照第二个链接的步骤设置整个解决方案。根据您的偏好调整完全限定名称。

import weblogic.servlet.logging.CustomELFLogger;
import weblogic.servlet.logging.FormatStringBuffer;
import weblogic.servlet.logging.HttpAccountingInfo;

/** 
 * Outputs the session ID specified by the client into a custom field called MyCustomField
 */
public class MyCustomField implements CustomELFLogger {

    public void logField(HttpAccountingInfo metrics, FormatStringBuffer buff) {
        buff.appendValueOrDash(metrics.getRequestedSessionId());
    }
}