Uses of Class
org.apache.flink.runtime.metrics.groups.AbstractMetricGroup
-
Packages that use AbstractMetricGroup Package Description org.apache.flink.runtime.metrics org.apache.flink.runtime.metrics.dump org.apache.flink.runtime.metrics.groups -
-
Uses of AbstractMetricGroup in org.apache.flink.runtime.metrics
Methods in org.apache.flink.runtime.metrics with parameters of type AbstractMetricGroup Modifier and Type Method Description void
MetricRegistry. register(Metric metric, String metricName, AbstractMetricGroup group)
Registers a newMetric
with this registry.void
MetricRegistryImpl. register(Metric metric, String metricName, AbstractMetricGroup group)
void
NoOpMetricRegistry. register(Metric metric, String metricName, AbstractMetricGroup group)
void
MetricRegistry. unregister(Metric metric, String metricName, AbstractMetricGroup group)
Un-registers the givenMetric
with this registry.void
MetricRegistryImpl. unregister(Metric metric, String metricName, AbstractMetricGroup group)
void
NoOpMetricRegistry. unregister(Metric metric, String metricName, AbstractMetricGroup group)
-
Uses of AbstractMetricGroup in org.apache.flink.runtime.metrics.dump
Methods in org.apache.flink.runtime.metrics.dump with parameters of type AbstractMetricGroup Modifier and Type Method Description void
MetricQueryService. addMetric(String metricName, Metric metric, AbstractMetricGroup group)
-
Uses of AbstractMetricGroup in org.apache.flink.runtime.metrics.groups
Classes in org.apache.flink.runtime.metrics.groups with type parameters of type AbstractMetricGroup Modifier and Type Class Description class
AbstractMetricGroup<A extends AbstractMetricGroup<?>>
AbstractMetricGroup
that contains key functionality for adding metrics and groups.class
ComponentMetricGroup<P extends AbstractMetricGroup<?>>
AbstractMetricGroup
for system components (e.g., TaskManager, Job, Task, Operator).class
FrontMetricGroup<P extends AbstractMetricGroup<?>>
Metric group which forwards all registration calls to a variable parent metric group that injects a variable reporter index into calls toMetricGroup.getMetricIdentifier(String)
orMetricGroup.getMetricIdentifier(String, CharacterFilter)
.Subclasses of AbstractMetricGroup in org.apache.flink.runtime.metrics.groups Modifier and Type Class Description class
ComponentMetricGroup<P extends AbstractMetricGroup<?>>
AbstractMetricGroup
for system components (e.g., TaskManager, Job, Task, Operator).class
GenericKeyMetricGroup
AGenericMetricGroup
for representing the key part of a key-value metric group pair.class
GenericMetricGroup
A simple namedMetricGroup
that is used to hold subgroups of metrics.class
GenericValueMetricGroup
AGenericMetricGroup
for representing the value part of a key-value metric group pair.class
InternalOperatorMetricGroup
SpecialMetricGroup
representing an Operator.class
JobManagerJobMetricGroup
SpecialMetricGroup
representing everything belonging to a specific job, running on the JobManager.class
JobManagerMetricGroup
SpecialMetricGroup
representing a JobManager.class
JobManagerOperatorMetricGroup
SpecialMetricGroup
representing everything belonging to the components running on the JobManager of an Operator.class
JobMetricGroup<C extends ComponentMetricGroup<C>>
Special abstractMetricGroup
representing everything belonging to a specific job.class
ProcessMetricGroup
AbstractImitatingJobManagerMetricGroup
implementation for process related metrics.class
ResourceManagerMetricGroup
Metric group which is used by theResourceManager
to register metrics.class
SlotManagerMetricGroup
Metric group which is used by theSlotManager
to register metrics.class
TaskManagerJobMetricGroup
SpecialMetricGroup
representing everything belonging to a specific job, running on the TaskManager.class
TaskManagerMetricGroup
SpecialMetricGroup
representing a TaskManager.class
TaskMetricGroup
SpecialMetricGroup
representing a Flink runtime Task.static class
UnregisteredMetricGroups.UnregisteredJobManagerJobMetricGroup
A safe drop-in replacement forJobManagerJobMetricGroup
s.static class
UnregisteredMetricGroups.UnregisteredJobManagerMetricGroup
A safe drop-in replacement forJobManagerMetricGroup
s.static class
UnregisteredMetricGroups.UnregisteredJobMangerOperatorMetricGroup
A safe drop-in replacement forJobManagerOperatorMetricGroup
s.static class
UnregisteredMetricGroups.UnregisteredOperatorMetricGroup
A safe drop-in replacement forInternalOperatorMetricGroup
s.static class
UnregisteredMetricGroups.UnregisteredProcessMetricGroup
A safe drop-in replacement forProcessMetricGroups
.static class
UnregisteredMetricGroups.UnregisteredResourceManagerMetricGroup
A safe drop-in replacement forResourceManagerMetricGroups
.static class
UnregisteredMetricGroups.UnregisteredSlotManagerMetricGroup
A safe drop-in replacement forSlotManagerMetricGroups
.static class
UnregisteredMetricGroups.UnregisteredTaskManagerJobMetricGroup
A safe drop-in replacement forTaskManagerJobMetricGroup
s.static class
UnregisteredMetricGroups.UnregisteredTaskManagerMetricGroup
A safe drop-in replacement forTaskManagerMetricGroup
s.static class
UnregisteredMetricGroups.UnregisteredTaskMetricGroup
A safe drop-in replacement forTaskMetricGroup
s.Fields in org.apache.flink.runtime.metrics.groups declared as AbstractMetricGroup Modifier and Type Field Description protected A
AbstractMetricGroup. parent
The parent group containing this group.Constructors in org.apache.flink.runtime.metrics.groups with parameters of type AbstractMetricGroup Constructor Description GenericMetricGroup(MetricRegistry registry, AbstractMetricGroup parent, String name)
-