Class ScopeFormats
- java.lang.Object
-
- org.apache.flink.runtime.metrics.scope.ScopeFormats
-
public final class ScopeFormats extends Object
A container for component scope formats.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ScopeFormats
fromConfig(org.apache.flink.configuration.Configuration config)
Creates the scope formats as defined in the given configuration.JobManagerOperatorScopeFormat
getJmOperatorFormat()
JobManagerScopeFormat
getJobManagerFormat()
JobManagerJobScopeFormat
getJobManagerJobFormat()
OperatorScopeFormat
getOperatorFormat()
TaskScopeFormat
getTaskFormat()
TaskManagerScopeFormat
getTaskManagerFormat()
TaskManagerJobScopeFormat
getTaskManagerJobFormat()
-
-
-
Method Detail
-
getJobManagerFormat
public JobManagerScopeFormat getJobManagerFormat()
-
getTaskManagerFormat
public TaskManagerScopeFormat getTaskManagerFormat()
-
getTaskManagerJobFormat
public TaskManagerJobScopeFormat getTaskManagerJobFormat()
-
getJobManagerJobFormat
public JobManagerJobScopeFormat getJobManagerJobFormat()
-
getTaskFormat
public TaskScopeFormat getTaskFormat()
-
getOperatorFormat
public OperatorScopeFormat getOperatorFormat()
-
getJmOperatorFormat
public JobManagerOperatorScopeFormat getJmOperatorFormat()
-
fromConfig
public static ScopeFormats fromConfig(org.apache.flink.configuration.Configuration config)
Creates the scope formats as defined in the given configuration.- Parameters:
config
- The configuration that defines the formats- Returns:
- The ScopeFormats parsed from the configuration
-
-