是否可以在WebLogic 8.1.6的访问日志中记录会话ID?
答案 0 :(得分:7)
是的,可以使用Extended Log Format和Custom 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());
}
}