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 Summary
Modifier and TypeFieldDescriptionfinal int
final List
<MissDetails_1_0> final int
final long
Time it took to save the action cache to disk.final long
Size of the action cache in bytes. -
Constructor Summary
ConstructorDescriptionBzlActionCacheStatistics_1_0
(long sizeInBytes, long saveTimeInMs, int hits, int misses, List<MissDetails_1_0> missDetails) -
Method Summary
-
Field Details
-
sizeInBytes
public final long sizeInBytesSize 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 saveTimeInMsTime it took to save the action cache to disk. -
hits
public final int hits -
misses
public final int misses -
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