如何在WildFly中查看Infinispan统计数据?

问题描述 投票:0回答:0

我在

standalone.xml
中为我的缓存容器启用了统计信息,如下所示:

<cache-container name="..." marshaller="JBOSS" modules="org.infinispan.hibernate-cache" statistics-enabled="true">
    <local-cache name="entity">
        <heap-memory size="100"/>
        <expiration max-idle="300000" lifespan="300000"/>
    </local-cache>
    <local-cache name="local-query">
        <heap-memory size="10000"/>
        <expiration max-idle="100000"/>
    </local-cache>
    <local-cache name="timestamps">
        <expiration interval="0"/>
    </local-cache>
</cache-container>

我可以去哪里查看统计数据?我正在使用 WildFly 26.

statistics wildfly infinispan
© www.soinside.com 2019 - 2024. All rights reserved.