getMetricsFailures method

MetricsFailures getMetricsFailures(
  1. String view,
  2. String map,
  3. String id, [
  4. Current? current,
])
override

Get the metrics failure associated for the given metrics.

@param view The name of the metrics view.

@param map The name of the metrics map.

@param id The ID of the metrics.

@return The metrics failures associated with the metrics.

@throws UnknownMetricsView Raised if the metrics view cannot be found.

Implementation

MetricsFailures getMetricsFailures(String view, String map, String id,
    [Current? current]) {
  return MetricsFailures(id);
}