Interface BuildEventStreamProtos.BuildMetrics.TargetMetricsOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
BuildEventStreamProtos.BuildMetrics.TargetMetrics, BuildEventStreamProtos.BuildMetrics.TargetMetrics.Builder
Enclosing class:
BuildEventStreamProtos.BuildMetrics

public static interface BuildEventStreamProtos.BuildMetrics.TargetMetricsOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    Number of targets/aspects configured during this build.
    long
    Number of configured targets analyzed during this build.
    long
    DEPRECATED No longer populated.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getTargetsLoaded

      long getTargetsLoaded()
       DEPRECATED
       No longer populated. It never measured what it was supposed to (targets
       loaded): it counted targets that were analyzed even if the underlying
       package had not changed.
       TODO(janakr): rename and remove.
       
      int64 targets_loaded = 1;
      Returns:
      The targetsLoaded.
    • getTargetsConfigured

      long getTargetsConfigured()
       Number of targets/aspects configured during this build. Does not include
       targets/aspects that were configured on prior builds on this server and
       were cached. See BuildGraphMetrics below if you need that.
       
      int64 targets_configured = 2;
      Returns:
      The targetsConfigured.
    • getTargetsConfiguredNotIncludingAspects

      long getTargetsConfiguredNotIncludingAspects()
       Number of configured targets analyzed during this build. Does not include
       aspects. Used mainly to allow consumers of targets_configured, which used
       to not include aspects, to normalize across the Blaze release that
       switched targets_configured to include aspects.
       
      int64 targets_configured_not_including_aspects = 3;
      Returns:
      The targetsConfiguredNotIncludingAspects.