CustomMetricReport
data class CustomMetricReport(val metrics: List<CustomMetric> = emptyList(), val providerFailures: List<String> = emptyList())(source)
The result of running every discovered MetricProvider against the graph.
Parameters
metrics
One entry per provider that produced a value without error, in discovery order.
providerFailures
Human-readable "<id or class>: <reason>" notes for providers that were skipped - a blank id, a duplicate id, or an exception thrown while computing. Never fatal; a broken provider is reported here and the rest still run.
Constructors
Link copied to clipboard
constructor(metrics: List<CustomMetric> = emptyList(), providerFailures: List<String> = emptyList())