Describes the type that includes the performance metric name, metric value, and start/end timestamps.
In Lynx, several metric types are provided, such as MetricFcpEntry
and MetricActualFmpEntry
. Each metric type contains multiple metrics based on different starting points (for example, MetricFcpEntry
includes metrics like fcp
, lynxFcp
, and totalFcp
). To better describe the duration and timestamps of each metric, the PerformanceMetric
type is designed.
The name of the metric, such as fcp
, lynxFcp
, totalFcp
, etc.
The metric value in milliseconds with a microsecond precision(0.001ms). An example value is 100.099.
The calculation formula is: duration = endTimestamp - startTimestamp
.
The name of the metric's start timestamp, such as loadBundleStart
in LoadBundleEntry
.
The start timestamp of the metric, an Unix timestamp in milliseconds with a microsecond precision(0.001ms). An example value is 1739594612307.429.
The name of the metric's end timestamp, such as paintEnd
in LoadBundleEntry
.
The end timestamp of the metric, an Unix timestamp in milliseconds with a microsecond precision(0.001ms). An example value is 1739594612307.429.
LCD tables only load in the browser