MetricGroup

open class MetricGroup(val name: String, val associatedNode: NodeGroup?, val raw: Metric?, val moments: Moments?)

Groups related metrics (raw metric and its statistical moments) together.

A metric group can be associated with a specific NodeGroup or represent global metrics. It includes the raw metric and computed moments (mean, confidence intervals, variance).

Constructors

Link copied to clipboard
constructor(name: String, associatedNode: NodeGroup?, raw: Metric?, moments: Moments?)

Properties

Link copied to clipboard

All individual metrics contained in this group (raw + moments).

Link copied to clipboard

the NodeGroup this metric is associated with (null for global metrics)

Link copied to clipboard

the computed statistical moments (null if only raw metric is tracked)

Link copied to clipboard

the name of this metric group

Link copied to clipboard
val raw: Metric?

the raw metric (null if only moments are tracked)

Functions

Link copied to clipboard

Returns the columns to display for this metric group in a results table.