响应时间Undertow系统的访问日志模式-Wildfly 14.0.1

时间:2018-11-01 09:08:25

标签: wildfly undertow

用于记录对undertow子系统的请求的总响应时间的访问日志模式是什么?

<subsystem xmlns="urn:jboss:domain:undertow:7.0" default-server="default-server" default-virtual-host="default-host" default-servlet-container="default" default-security-domain="other">
            <buffer-cache name="default"/>
            <server name="default-server">
                <http-listener name="default" socket-binding="http" redirect-socket="https" enable-http2="true"/>
                <https-listener name="https" socket-binding="https" security-realm="ApplicationRealm" enable-http2="true"/>
                <host name="default-host" alias="localhost">
                <access-log  prefix="access" pattern="%h %t %U%q %m %s %b %T"/>   <!-- use-server-log="true" -->
                    <location name="/" handler="welcome-content"/>
                    <http-invoker security-realm="ApplicationRealm"/>
                </host>
            </server>
            <servlet-container name="default">
                <jsp-config/>
                <websockets/>
            </servlet-container>
            <handlers>
                <file name="welcome-content" path="${jboss.home.dir}/welcome-content"/>
            </handlers>
        </subsystem>

%T在日志中仅记录了一个“-”。请帮忙。

1 个答案:

答案 0 :(得分:1)

Here我发现以下提示:

  

处理请求所花费的时间,以秒为单位。除非record-request-start-time设置为true,否则它将不起作用,请参见上面的%D。

还有一个链接,您可以对其进行配置。 record-request-start-time