Re: How to publish client stats on server

2019-04-16 Thread John Blum
Or alternatively, when using Spring, you can just use @EnableStatistics [1]. [1] https://docs.spring.io/spring-data/geode/docs/current/api/org/springframework/data/gemfire/config/annotation/EnableStatistics.html On Tue, Apr 16, 2019 at 10:44 AM Darrel Schneider wrote: > setPoolStatisticInterval

Re: How to publish client stats on server

2019-04-16 Thread Darrel Schneider
setPoolStatisticInterval does cause the client to send some of its stats periodically to the server. But the server puts this information into MBeans and does not write them to the server's statistic archive. This is why the javadoc's on setPoolStatisticInterval refers to "gfmon". Your best bet, as

Re: How to publish client stats on server

2019-04-16 Thread Dan Smith
As Anthony pointed out, each member (client, server, locator, etc.) writes it's own statistics to it's own stats file. There is are some server side stats that might have the information you are looking for - see CacheServerStats. That has information about how many operations the server has recei

Re: How to publish client stats on server

2019-04-16 Thread Anthony Baker
The client stats are written to a file on the client. They don’t get published to the server. Anthony > On Apr 16, 2019, at 6:19 AM, Alberto Bustamante Reyes > wrote: > > Hi Geode community, > > Im trying to run a simple test to check how the client stats are published on > the server, but