Class BzlActionSummary_1_0
java.lang.Object
com.gradle.scan.eventmodel.bazel.metrics.BzlActionSummary_1_0
- All Implemented Interfaces:
com.gradle.scan.eventmodel.EventData
@BazelVersion(since="1.0")
@BazelAgentVersion(since="1.2")
public class BzlActionSummary_1_0
extends Object
implements com.gradle.scan.eventmodel.EventData
Information about the actions executed during a single build.
-
Field Summary
Modifier and TypeFieldDescriptionfinal long
The total number of actions created and registered during the build, including both aspects and configured targets.final long
The total number of actions executed during the build. -
Constructor Summary
-
Method Summary
-
Field Details
-
actionsCreated
public final long actionsCreatedThe total number of actions created and registered during the build, including both aspects and configured targets. This metric includes unused actions that were constructed but not executed during this build. It does not include actions that were created on prior builds that are still valid, even if those actions had to be re-executed on this build. For the total number of actions that would be created if this invocation were "clean", see BuildGraphMetrics below. -
actionsExecuted
public final long actionsExecutedThe total number of actions executed during the build. This includes any remote cache hits, but excludes local action cache hits.
-
-
Constructor Details
-
BzlActionSummary_1_0
public BzlActionSummary_1_0(long actionsCreated, long actionsExecuted)
-
-
Method Details