Interface BuildEventStreamProtos.BuildMetrics.ActionSummaryOrBuilder

    • Method Detail

      • getActionsCreated

        long getActionsCreated()
         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.
         
        int64 actions_created = 1;
        Returns:
        The actionsCreated.
      • getActionsCreatedNotIncludingAspects

        long getActionsCreatedNotIncludingAspects()
         The total number of actions created this build just by configured
         targets. Used mainly to allow consumers of actions_created, which used to
         not include aspects' actions, to normalize across the Blaze release that
         switched actions_created to include all created actions.
         
        int64 actions_created_not_including_aspects = 3;
        Returns:
        The actionsCreatedNotIncludingAspects.
      • getActionsExecuted

        long getActionsExecuted()
         The total number of actions executed during the build. This includes any
         remote cache hits, but excludes local action cache hits.
         
        int64 actions_executed = 2;
        Returns:
        The actionsExecuted.
      • getActionDataCount

        int getActionDataCount()
         Contains the top N actions by number of actions executed.
         
        repeated .build_event_stream.BuildMetrics.ActionSummary.ActionData action_data = 4;
      • getRemoteCacheHits

        @Deprecated
        long getRemoteCacheHits()
        Deprecated.
        build_event_stream.BuildMetrics.ActionSummary.remote_cache_hits is deprecated. See src/main/java/com/google/devtools/build/lib/buildeventstream/proto/build_event_stream.proto;l=858
         Deprecated. The total number of remote cache hits.
         
        int64 remote_cache_hits = 5 [deprecated = true];
        Returns:
        The remoteCacheHits.
      • getRunnerCountCount

        int getRunnerCountCount()
        repeated .build_event_stream.BuildMetrics.ActionSummary.RunnerCount runner_count = 6;