Show / Hide Table of Contents

Class DataflowHistogramValue

Summary statistics for a population of values. HistogramValue contains a sequence of buckets and gives a count of values that fall into each bucket. Bucket boundares are defined by a formula and bucket widths are either fixed or exponentially increasing.

Inheritance
object
DataflowHistogramValue
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Dataflow.v1b3.Data
Assembly: Google.Apis.Dataflow.v1b3.dll
Syntax
public class DataflowHistogramValue : IDirectResponseSchema

Properties

BucketCounts

Optional. The number of values in each bucket of the histogram, as described in bucket_options. bucket_counts should contain N values, where N is the number of buckets specified in bucket_options. If bucket_counts has fewer than N values, the remaining values are assumed to be 0.

Declaration
[JsonProperty("bucketCounts")]
public virtual IList<long?> BucketCounts { get; set; }
Property Value
Type Description
IList<long?>

BucketOptions

Describes the bucket boundaries used in the histogram.

Declaration
[JsonProperty("bucketOptions")]
public virtual BucketOptions BucketOptions { get; set; }
Property Value
Type Description
BucketOptions

Count

Number of values recorded in this histogram.

Declaration
[JsonProperty("count")]
public virtual long? Count { get; set; }
Property Value
Type Description
long?

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

OutlierStats

Statistics on the values recorded in the histogram that fall out of the bucket boundaries.

Declaration
[JsonProperty("outlierStats")]
public virtual OutlierStats OutlierStats { get; set; }
Property Value
Type Description
OutlierStats

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX