Interface Service.MetricOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
Service.Metric, Service.Metric.Builder
Enclosing class:
Service

public static interface Service.MetricOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    Key identifying this metric.
    com.google.protobuf.ByteString
    Key identifying this metric.
    long
    Step at which to log the metric.
    long
    The timestamp at which this metric was recorded.
    double
    Value associated with this metric.
    boolean
    Key identifying this metric.
    boolean
    Step at which to log the metric.
    boolean
    The timestamp at which this metric was recorded.
    boolean
    Value associated with this metric.

    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

    • hasKey

      boolean hasKey()
       Key identifying this metric.
       
      optional string key = 1;
      Returns:
      Whether the key field is set.
    • getKey

      String getKey()
       Key identifying this metric.
       
      optional string key = 1;
      Returns:
      The key.
    • getKeyBytes

      com.google.protobuf.ByteString getKeyBytes()
       Key identifying this metric.
       
      optional string key = 1;
      Returns:
      The bytes for key.
    • hasValue

      boolean hasValue()
       Value associated with this metric.
       
      optional double value = 2;
      Returns:
      Whether the value field is set.
    • getValue

      double getValue()
       Value associated with this metric.
       
      optional double value = 2;
      Returns:
      The value.
    • hasTimestamp

      boolean hasTimestamp()
       The timestamp at which this metric was recorded.
       
      optional int64 timestamp = 3;
      Returns:
      Whether the timestamp field is set.
    • getTimestamp

      long getTimestamp()
       The timestamp at which this metric was recorded.
       
      optional int64 timestamp = 3;
      Returns:
      The timestamp.
    • hasStep

      boolean hasStep()
       Step at which to log the metric.
       
      optional int64 step = 4 [default = 0];
      Returns:
      Whether the step field is set.
    • getStep

      long getStep()
       Step at which to log the metric.
       
      optional int64 step = 4 [default = 0];
      Returns:
      The step.