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.

  1. In gfsh, start your locator running the cluster configuration service (--enable-cluster-configuration=true).
  2. Execute the following command to modify the cluster's configuration:

    gfsh>alter runtime --enable-statistics=true
    

    You can also configure sample rate and the filename of your statistic archive files. See alter runtime for more command options.

  3. Alternately, if you are not using the cluster configuration service, configure gemfire.properties for the statistics monitoring and archival that you need:

    1. Enable statistics gathering for the distributed system. This is required for all other statistics activities:

      statistic-sampling-enabled=true
      

      Note: Statistics sampling at the default sample rate (1000 milliseconds) does not impact system performance and is recommended in production environments for troubleshooting.

    2. Change the statistics sample rate as needed. Example:

      statistic-sampling-enabled=true
      statistic-sample-rate=2000
      
    3. To 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=1000
      
    4. If 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=true
      

      Note: Time-based statistics can impact system performance and is not recommended for production environments.

  4. 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=true
    

    Example:

    <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 getStatistics methods of the Region and Region.Entry objects. 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());
    }
    
  5. Create and manage any custom statistics that you need through the cache.xml and 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);
    
  6. Access archived statistics through the gfsh show metrics command.

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-rate parameter controls how often samples are taken, which affects the speed at which the archive file grows.
    • The --statistic-archive-file parameter controls whether the statistics files are compressed. If you give the file name a .gz suffix, it is compressed, thereby taking up less disk space.
  • Maximum Size of a Single Archive File. If the value of the --archive-file-size-limit is 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-limit while 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-limit parameter 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-limit is 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-limit while the distributed system is running, the new value does not take effect until the current archive becomes inactive.

results matching ""

    No results matching ""