Interface BuildEventStreamProtos.BuildMetrics.ActionSummaryOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BuildEventStreamProtos.BuildMetrics.ActionSummary,BuildEventStreamProtos.BuildMetrics.ActionSummary.Builder
- Enclosing class:
- BuildEventStreamProtos.BuildMetrics
public static interface BuildEventStreamProtos.BuildMetrics.ActionSummaryOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description BuildEventStreamProtos.BuildMetrics.ActionSummary.ActionDatagetActionData(int index)Contains the top N actions by number of actions executed.intgetActionDataCount()Contains the top N actions by number of actions executed.java.util.List<BuildEventStreamProtos.BuildMetrics.ActionSummary.ActionData>getActionDataList()Contains the top N actions by number of actions executed.BuildEventStreamProtos.BuildMetrics.ActionSummary.ActionDataOrBuildergetActionDataOrBuilder(int index)Contains the top N actions by number of actions executed.java.util.List<? extends BuildEventStreamProtos.BuildMetrics.ActionSummary.ActionDataOrBuilder>getActionDataOrBuilderList()Contains the top N actions by number of actions executed.longgetActionsCreated()The total number of actions created and registered during the build, including both aspects and configured targets.longgetActionsCreatedNotIncludingAspects()The total number of actions created this build just by configured targets.longgetActionsExecuted()The total number of actions executed during the build.longgetRemoteCacheHits()Deprecated.build_event_stream.BuildMetrics.ActionSummary.remote_cache_hits is deprecated.BuildEventStreamProtos.BuildMetrics.ActionSummary.RunnerCountgetRunnerCount(int index)repeated .build_event_stream.BuildMetrics.ActionSummary.RunnerCount runner_count = 6;intgetRunnerCountCount()repeated .build_event_stream.BuildMetrics.ActionSummary.RunnerCount runner_count = 6;java.util.List<BuildEventStreamProtos.BuildMetrics.ActionSummary.RunnerCount>getRunnerCountList()repeated .build_event_stream.BuildMetrics.ActionSummary.RunnerCount runner_count = 6;BuildEventStreamProtos.BuildMetrics.ActionSummary.RunnerCountOrBuildergetRunnerCountOrBuilder(int index)repeated .build_event_stream.BuildMetrics.ActionSummary.RunnerCount runner_count = 6;java.util.List<? extends BuildEventStreamProtos.BuildMetrics.ActionSummary.RunnerCountOrBuilder>getRunnerCountOrBuilderList()repeated .build_event_stream.BuildMetrics.ActionSummary.RunnerCount runner_count = 6;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
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.
-
getActionDataList
java.util.List<BuildEventStreamProtos.BuildMetrics.ActionSummary.ActionData> getActionDataList()
Contains the top N actions by number of actions executed.
repeated .build_event_stream.BuildMetrics.ActionSummary.ActionData action_data = 4;
-
getActionData
BuildEventStreamProtos.BuildMetrics.ActionSummary.ActionData getActionData(int index)
Contains the top N actions by number of actions executed.
repeated .build_event_stream.BuildMetrics.ActionSummary.ActionData action_data = 4;
-
getActionDataCount
int getActionDataCount()
Contains the top N actions by number of actions executed.
repeated .build_event_stream.BuildMetrics.ActionSummary.ActionData action_data = 4;
-
getActionDataOrBuilderList
java.util.List<? extends BuildEventStreamProtos.BuildMetrics.ActionSummary.ActionDataOrBuilder> getActionDataOrBuilderList()
Contains the top N actions by number of actions executed.
repeated .build_event_stream.BuildMetrics.ActionSummary.ActionData action_data = 4;
-
getActionDataOrBuilder
BuildEventStreamProtos.BuildMetrics.ActionSummary.ActionDataOrBuilder getActionDataOrBuilder(int index)
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=858Deprecated. The total number of remote cache hits.
int64 remote_cache_hits = 5 [deprecated = true];- Returns:
- The remoteCacheHits.
-
getRunnerCountList
java.util.List<BuildEventStreamProtos.BuildMetrics.ActionSummary.RunnerCount> getRunnerCountList()
repeated .build_event_stream.BuildMetrics.ActionSummary.RunnerCount runner_count = 6;
-
getRunnerCount
BuildEventStreamProtos.BuildMetrics.ActionSummary.RunnerCount getRunnerCount(int index)
repeated .build_event_stream.BuildMetrics.ActionSummary.RunnerCount runner_count = 6;
-
getRunnerCountCount
int getRunnerCountCount()
repeated .build_event_stream.BuildMetrics.ActionSummary.RunnerCount runner_count = 6;
-
getRunnerCountOrBuilderList
java.util.List<? extends BuildEventStreamProtos.BuildMetrics.ActionSummary.RunnerCountOrBuilder> getRunnerCountOrBuilderList()
repeated .build_event_stream.BuildMetrics.ActionSummary.RunnerCount runner_count = 6;
-
getRunnerCountOrBuilder
BuildEventStreamProtos.BuildMetrics.ActionSummary.RunnerCountOrBuilder getRunnerCountOrBuilder(int index)
repeated .build_event_stream.BuildMetrics.ActionSummary.RunnerCount runner_count = 6;
-
-