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 the provided data and returns a list of CheckResult instances.

Return type:

list[CheckResult]

Args:

data (Dict[str, Any]): The data to be analyzed. The structure depends on the analyzer’s implementation.

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'