Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Page properties

Document the state by adding a label to the FLIP page with one of "discussion", "accepted", "released", "rejected".


Please keep the discussion on the mailing list rather than commenting on the wiki (wiki discussions get unwieldy fast).

...

Code Block
languagejava
@PublicEvolving
public class MetricOptions {
    ......      

    /**
     * The scope format string that is applied to all metrics scoped to an operator coordinator on a
     * JobManager.
     */
    public static final ConfigOption<String> SCOPE_NAMING_JM_OPERATOR =
            key("metrics.scope.jm-operator")
                    .stringType()
                    .defaultValue("<host>.jobmanager.<job_name>.<task_name>.<operator_name>")
                    .withDescription(
                            "Defines the scope format string that is applied to all metrics scoped to the components about Operator on a JobManager, like OperatorCoordinator.");     

    ......
}

...

4) Modify the JobManagerJobMetricGroup. InternalOperatorCoordinatorMetricGroup JobManagerOperatorMetricGroup could be registered and got from JobManagerJobMetricGroup.

...