Show / Hide Table of Contents

Class MetricTimeseries

A metric timeseries is a set of user experience data for a single web performance metric, like "first contentful paint". It contains a summary histogram of real world Chrome usage as a series of bins, where each bin has density values for a particular time period.

Inheritance
object
MetricTimeseries
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.ChromeUXReport.v1.Data
Assembly: Google.Apis.ChromeUXReport.v1.dll
Syntax
public class MetricTimeseries : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

FractionTimeseries

Mapping from labels to timeseries of fractions attributed to this label.

Declaration
[JsonProperty("fractionTimeseries")]
public virtual IDictionary<string, FractionTimeseries> FractionTimeseries { get; set; }
Property Value
Type Description
IDictionary<string, FractionTimeseries>

HistogramTimeseries

The histogram of user experiences for a metric. The histogram will have at least one bin and the densities of all bins will add up to ~1, for each timeseries entry.

Declaration
[JsonProperty("histogramTimeseries")]
public virtual IList<TimeseriesBin> HistogramTimeseries { get; set; }
Property Value
Type Description
IList<TimeseriesBin>

PercentilesTimeseries

Commonly useful percentiles of the Metric. The value type for the percentiles will be the same as the value types given for the Histogram bins.

Declaration
[JsonProperty("percentilesTimeseries")]
public virtual TimeseriesPercentiles PercentilesTimeseries { get; set; }
Property Value
Type Description
TimeseriesPercentiles

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX