Class Metric
A metric
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
.
Implements
Inherited Members
Namespace: Google.Apis.ChromeUXReport.v1.Data
Assembly: Google.Apis.ChromeUXReport.v1.dll
Syntax
public class Metric : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Fractions
For enum metrics, provides fractions which add up to approximately 1.0.
Declaration
[JsonProperty("fractions")]
public virtual IDictionary<string, double?> Fractions { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, double?> |
Histogram
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.
Declaration
[JsonProperty("histogram")]
public virtual IList<Bin> Histogram { get; set; }
Property Value
Type | Description |
---|---|
IList<Bin> |
Percentiles
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("percentiles")]
public virtual Percentiles Percentiles { get; set; }
Property Value
Type | Description |
---|---|
Percentiles |