Class BzlActionCacheStatistics_1_0

java.lang.Object
com.gradle.scan.eventmodel.bazel.metrics.BzlActionCacheStatistics_1_0
All Implemented Interfaces:
com.gradle.scan.eventmodel.EventData

@BazelVersion(since="6.3") @BazelAgentVersion(since="1.2") public class BzlActionCacheStatistics_1_0 extends Object implements com.gradle.scan.eventmodel.EventData
Information about the local cache behavior during a single build.
  • Field Details

    • sizeInBytes

      public final long sizeInBytes
      Size of the action cache in bytes. This is computed by the code that persists the action cache to disk and represents the size of the written files, which has no direct relation to the number of entries in the cache.
    • saveTimeInMs

      public final long saveTimeInMs
      Time it took to save the action cache to disk.
    • hits

      public final int hits
    • misses

      public final int misses
    • missDetails

      public final List<MissDetails_1_0> missDetails
  • Constructor Details

    • BzlActionCacheStatistics_1_0

      public BzlActionCacheStatistics_1_0(long sizeInBytes, long saveTimeInMs, int hits, int misses, List<MissDetails_1_0> missDetails)
  • Method Details