Configuring and Using Statistics
You configure statistics and statistics archiving in gemfire.properties
Configure Statistics
In this procedure it is assumed that you understand Basic Configuration and Programming.
- In gfsh, start your locator running the cluster configuration service (
--enable-cluster-configuration=true). Execute the following command to modify the cluster's configuration:
gfsh>alter runtime --enable-statistics=trueYou can also configure sample rate and the filename of your statistic archive files. See alter runtime for more command options.
Alternately, if you are not using the cluster configuration service, configure
gemfire.propertiesfor the statistics monitoring and archival that you need:Enable statistics gathering for the distributed system. This is required for all other statistics activities:
statistic-sampling-enabled=trueNote: Statistics sampling at the default sample rate (1000 milliseconds) does not impact system performance and is recommended in production environments for troubleshooting.
Change the statistics sample rate as needed. Example:
statistic-sampling-enabled=true statistic-sample-rate=2000To archive the statistics to disk, enable that and set any file or disk space limits that you need. Example:
statistic-sampling-enabled=true statistic-archive-file=myStatisticsArchiveFile.gfs archive-file-size-limit=100 archive-disk-space-limit=1000If you need time-based statistics, enable that. Time-based statistics require statistics sampling and archival. Example:
statistic-sampling-enabled=true statistic-archive-file=myStatisticsArchiveFile.gfs enable-time-statistics=trueNote: Time-based statistics can impact system performance and is not recommended for production environments.
Enable transient region and entry statistics gathering on the regions where you need it. Expiration requires statistics.
gfsh example:
gfsh>create region --name=myRegion --type=REPLICATE --enable-statistics=trueExample:
<region name="myRegion" refid="REPLICATE"> <region-attributes statistics-enabled="true"> </region-attributes> </region>Note: Region and entry statistics are not archived and can only be accessed through the API. As needed, retrieve region and entry statistics through the
getStatisticsmethods of theRegionandRegion.Entryobjects. Example:out.println("Current Region:\n\t" + this.currRegion.getName()); RegionAttributes attrs = this.currRegion.getAttributes(); if (attrs.getStatisticsEnabled()) { CacheStatistics stats = this.currRegion.getStatistics(); out.println("Stats:\n\tHitCount is " + stats.getHitCount() + "\n\tMissCount is " + stats.getMissCount() + "\n\tLastAccessedTime is " + stats.getLastAccessedTime() + "\n\tLastModifiedTime is " + stats.getLastModifiedTime()); }Create and manage any custom statistics that you need through the
cache.xmland the API. Example:// Create custom statistics <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE statistics PUBLIC "-//Example Systems, Inc.//Example Statistics Type//EN" "http://www.example.com/dtd/statisticsType.dtd"> <statistics> <type name="StatSampler"> <description>Stats on the statistic sampler.</description> <stat name="sampleCount" storage="int" counter="true"> <description>Total number of samples taken by this sampler.</description> <unit>samples</unit> </stat> <stat name="sampleTime" storage="long" counter="true"> <description>Total amount of time spent taking samples.</description> <unit>milliseconds</unit> </stat> </type> </statistics>// Update custom stats through the API this.samplerStats.incInt(this.sampleCountId, 1); this.samplerStats.incLong(this.sampleTimeId, nanosSpentWorking / 1000000);Access archived statistics through the
gfsh show metricscommand.
Controlling the Size of Archive Files
You can specify limits on the archive files for statistics using alter runtime command. These are the areas of control:
- Archive File Growth Rate.
- The
--statistic-sample-rateparameter controls how often samples are taken, which affects the speed at which the archive file grows. - The
--statistic-archive-fileparameter controls whether the statistics files are compressed. If you give the file name a.gzsuffix, it is compressed, thereby taking up less disk space.
- The
Maximum Size of a Single Archive File. If the value of the
--archive-file-size-limitis greater than zero, a new archive is started when the size of the current archive exceeds the limit. Only one archive can be active at a time. Note: If you modify the value of--archive-file-size-limitwhile the distributed system is running, the new value does not take effect until the current archive becomes inactive (that is, when a new archive is started).Maximum Size of All Archive Files. The
--archive-disk-space-limitparameter controls the maximum size of all inactive archive files combined. By default, the limit is set to 0, meaning that archive space is unlimited. Whenever an archive becomes inactive or when the archive file is renamed, the combined size of the inactive files is calculated. If the size exceeds the--archive-disk-space-limit, the inactive archive with the oldest modification time is deleted. This continues until the combined size is less than the limit. If--archive-disk-space-limitis less than or equal to--archive-file-size-limit, when the active archive is made inactive due to its size, it is immediately deleted. Note: If you modify the value of--archive-disk-space-limitwhile the distributed system is running, the new value does not take effect until the current archive becomes inactive.