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 Details

    • actionsCreated

      public final long actionsCreated
      The 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 actionsExecuted
      The 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