domino_admin_toolkit.analyzers.central_config module

pydantic model domino_admin_toolkit.analyzers.central_config.WorkloadServiceFlagAnalyzer

Bases: AnalyzerBase

Detects useWorkloadService=false in Central Config.

When workload-service causes BufferOverflowException incidents, support toggles this flag to false as a workaround. Having it disabled means the workaround outlived the incident.

Fields:

analyze(data)

Analyzes one row and returns a list of CheckResult instances.

Return type:

list[CheckResult]

Args:

data: One row dict (TRow). The Runner calls this once per DataFrame row.

Returns:

List[CheckResult]: A list containing the results of the analysis.

Raises:

NotImplementedError: If this method is not implemented by subclasses.

name: ClassVar[str] = 'WorkloadServiceFlagAnalyzer'