getMetricsViewNames method

List<StringSeq> getMetricsViewNames([
  1. Current? current
])
override

Get the names of enabled and disabled metrics.

@param disabledViews The names of the disabled views.

@return The name of the enabled views.

Implementation

List<StringSeq> getMetricsViewNames([Current? current]) {
  return [List.from(views.keys), List.from(disabledViews)];
}