Resource Usage Metric
data class ResourceUsageMetric(@Json(name = "max" ) val max: Long, @Json(name = "average" ) val average: Long, @Json(name = "median" ) val median: Long, @Json(name = "p5" ) val p5: Long, @Json(name = "p25" ) val p25: Long, @Json(name = "p75" ) val p75: Long, @Json(name = "p95" ) val p95: Long)
Parameters
max
The max value of the metric.
average
The average value of the metric.
median
The median (or 50th percentile) value of the metric.
p5
The 5th percentile value of the metric.
p25
The 25th percentile value of the metric.
p75
The 75th percentile value of the metric.
p95
The 95th percentile value of the metric.