trait ViewOrBuilder extends MessageOrBuilder
- Alphabetic
- By Inheritance
- ViewOrBuilder
- MessageOrBuilder
- MessageLiteOrBuilder
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def findInitializationErrors(): List[String]
- Definition Classes
- MessageOrBuilder
- abstract def getAggregationCase(): AggregationCase
- abstract def getAllFields(): Map[FieldDescriptor, AnyRef]
- Definition Classes
- MessageOrBuilder
- abstract def getColumns(index: Int): String
An array of tag keys. These values associated with tags of this name form the basis by which individual stats will be aggregated (one aggregation per unique tag value). If none are provided, then all data is recorded in a single aggregation.
An array of tag keys. These values associated with tags of this name form the basis by which individual stats will be aggregated (one aggregation per unique tag value). If none are provided, then all data is recorded in a single aggregation.
repeated string columns = 4;
- index
The index of the element to return.
- returns
The columns at the given index.
- abstract def getColumnsBytes(index: Int): ByteString
An array of tag keys. These values associated with tags of this name form the basis by which individual stats will be aggregated (one aggregation per unique tag value). If none are provided, then all data is recorded in a single aggregation.
An array of tag keys. These values associated with tags of this name form the basis by which individual stats will be aggregated (one aggregation per unique tag value). If none are provided, then all data is recorded in a single aggregation.
repeated string columns = 4;
- index
The index of the value to return.
- returns
The bytes of the columns at the given index.
- abstract def getColumnsCount(): Int
An array of tag keys. These values associated with tags of this name form the basis by which individual stats will be aggregated (one aggregation per unique tag value). If none are provided, then all data is recorded in a single aggregation.
An array of tag keys. These values associated with tags of this name form the basis by which individual stats will be aggregated (one aggregation per unique tag value). If none are provided, then all data is recorded in a single aggregation.
repeated string columns = 4;
- returns
The count of columns.
- abstract def getColumnsList(): List[String]
An array of tag keys. These values associated with tags of this name form the basis by which individual stats will be aggregated (one aggregation per unique tag value). If none are provided, then all data is recorded in a single aggregation.
An array of tag keys. These values associated with tags of this name form the basis by which individual stats will be aggregated (one aggregation per unique tag value). If none are provided, then all data is recorded in a single aggregation.
repeated string columns = 4;
- returns
A list containing the columns.
- abstract def getCountAggregation(): CountAggregation
Counts the number of measurements recorded.
Counts the number of measurements recorded.
.opencensus.proto.stats.v1.CountAggregation count_aggregation = 5;
- returns
The countAggregation.
- abstract def getCountAggregationOrBuilder(): CountAggregationOrBuilder
Counts the number of measurements recorded.
Counts the number of measurements recorded.
.opencensus.proto.stats.v1.CountAggregation count_aggregation = 5;
- abstract def getDefaultInstanceForType(): Message
- Definition Classes
- MessageOrBuilder → MessageLiteOrBuilder
- abstract def getDescription(): String
Describes the view, e.g. "RPC latency distribution"
Describes the view, e.g. "RPC latency distribution"
string description = 2;
- returns
The description.
- abstract def getDescriptionBytes(): ByteString
Describes the view, e.g. "RPC latency distribution"
Describes the view, e.g. "RPC latency distribution"
string description = 2;
- returns
The bytes for description.
- abstract def getDescriptorForType(): Descriptor
- Definition Classes
- MessageOrBuilder
- abstract def getDistributionAggregation(): DistributionAggregation
Indicates that the desired Aggregation is a histogram distribution. A distribution Aggregation may contain a histogram of the values in the population. User should define the bucket boundaries for that histogram (see DistributionAggregation).
Indicates that the desired Aggregation is a histogram distribution. A distribution Aggregation may contain a histogram of the values in the population. User should define the bucket boundaries for that histogram (see DistributionAggregation).
.opencensus.proto.stats.v1.DistributionAggregation distribution_aggregation = 8;
- returns
The distributionAggregation.
- abstract def getDistributionAggregationOrBuilder(): DistributionAggregationOrBuilder
Indicates that the desired Aggregation is a histogram distribution. A distribution Aggregation may contain a histogram of the values in the population. User should define the bucket boundaries for that histogram (see DistributionAggregation).
Indicates that the desired Aggregation is a histogram distribution. A distribution Aggregation may contain a histogram of the values in the population. User should define the bucket boundaries for that histogram (see DistributionAggregation).
.opencensus.proto.stats.v1.DistributionAggregation distribution_aggregation = 8;
- abstract def getField(arg0: FieldDescriptor): AnyRef
- Definition Classes
- MessageOrBuilder
- abstract def getInitializationErrorString(): String
- Definition Classes
- MessageOrBuilder
- abstract def getLastValueAggregation(): LastValueAggregation
Indicates that data collected and aggregated with this Aggregation will represent the last recorded value. This is useful to support Gauges.
Indicates that data collected and aggregated with this Aggregation will represent the last recorded value. This is useful to support Gauges.
.opencensus.proto.stats.v1.LastValueAggregation last_value_aggregation = 7;
- returns
The lastValueAggregation.
- abstract def getLastValueAggregationOrBuilder(): LastValueAggregationOrBuilder
Indicates that data collected and aggregated with this Aggregation will represent the last recorded value. This is useful to support Gauges.
Indicates that data collected and aggregated with this Aggregation will represent the last recorded value. This is useful to support Gauges.
.opencensus.proto.stats.v1.LastValueAggregation last_value_aggregation = 7;
- abstract def getMeasure(): Measure
The Measure to which this view is applied.
The Measure to which this view is applied.
.opencensus.proto.stats.v1.Measure measure = 3;
- returns
The measure.
- abstract def getMeasureOrBuilder(): MeasureOrBuilder
The Measure to which this view is applied.
The Measure to which this view is applied.
.opencensus.proto.stats.v1.Measure measure = 3;
- abstract def getName(): String
A string by which the View will be referred to, e.g. "rpc_latency". Names MUST be unique within the library.
A string by which the View will be referred to, e.g. "rpc_latency". Names MUST be unique within the library.
string name = 1;
- returns
The name.
- abstract def getNameBytes(): ByteString
A string by which the View will be referred to, e.g. "rpc_latency". Names MUST be unique within the library.
A string by which the View will be referred to, e.g. "rpc_latency". Names MUST be unique within the library.
string name = 1;
- returns
The bytes for name.
- abstract def getOneofFieldDescriptor(arg0: OneofDescriptor): FieldDescriptor
- Definition Classes
- MessageOrBuilder
- abstract def getRepeatedField(arg0: FieldDescriptor, arg1: Int): AnyRef
- Definition Classes
- MessageOrBuilder
- abstract def getRepeatedFieldCount(arg0: FieldDescriptor): Int
- Definition Classes
- MessageOrBuilder
- abstract def getSumAggregation(): SumAggregation
Indicates that data collected and aggregated with this Aggregation will be summed up.
Indicates that data collected and aggregated with this Aggregation will be summed up.
.opencensus.proto.stats.v1.SumAggregation sum_aggregation = 6;
- returns
The sumAggregation.
- abstract def getSumAggregationOrBuilder(): SumAggregationOrBuilder
Indicates that data collected and aggregated with this Aggregation will be summed up.
Indicates that data collected and aggregated with this Aggregation will be summed up.
.opencensus.proto.stats.v1.SumAggregation sum_aggregation = 6;
- abstract def getUnknownFields(): UnknownFieldSet
- Definition Classes
- MessageOrBuilder
- abstract def hasCountAggregation(): Boolean
Counts the number of measurements recorded.
Counts the number of measurements recorded.
.opencensus.proto.stats.v1.CountAggregation count_aggregation = 5;
- returns
Whether the countAggregation field is set.
- abstract def hasDistributionAggregation(): Boolean
Indicates that the desired Aggregation is a histogram distribution. A distribution Aggregation may contain a histogram of the values in the population. User should define the bucket boundaries for that histogram (see DistributionAggregation).
Indicates that the desired Aggregation is a histogram distribution. A distribution Aggregation may contain a histogram of the values in the population. User should define the bucket boundaries for that histogram (see DistributionAggregation).
.opencensus.proto.stats.v1.DistributionAggregation distribution_aggregation = 8;
- returns
Whether the distributionAggregation field is set.
- abstract def hasField(arg0: FieldDescriptor): Boolean
- Definition Classes
- MessageOrBuilder
- abstract def hasLastValueAggregation(): Boolean
Indicates that data collected and aggregated with this Aggregation will represent the last recorded value. This is useful to support Gauges.
Indicates that data collected and aggregated with this Aggregation will represent the last recorded value. This is useful to support Gauges.
.opencensus.proto.stats.v1.LastValueAggregation last_value_aggregation = 7;
- returns
Whether the lastValueAggregation field is set.
- abstract def hasMeasure(): Boolean
The Measure to which this view is applied.
The Measure to which this view is applied.
.opencensus.proto.stats.v1.Measure measure = 3;
- returns
Whether the measure field is set.
- abstract def hasOneof(arg0: OneofDescriptor): Boolean
- Definition Classes
- MessageOrBuilder
- abstract def hasSumAggregation(): Boolean
Indicates that data collected and aggregated with this Aggregation will be summed up.
Indicates that data collected and aggregated with this Aggregation will be summed up.
.opencensus.proto.stats.v1.SumAggregation sum_aggregation = 6;
- returns
Whether the sumAggregation field is set.
- abstract def isInitialized(): Boolean
- Definition Classes
- MessageLiteOrBuilder
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()