Skip to content

Issue class

An issue detected in the configuration.

Issue is a dataclass that represents an issue detected during the configuration check process. It contains the necessary information to understand the issue and help the user to fix it.

Attributes

field instance-attribute

field: str

Configuration field on which the issue has been detected.

level instance-attribute

level: str

Level of the issue among ERROR, WARNING, INFO.

message instance-attribute

message: str

Human readable message to help the user fix the issue.

tag instance-attribute

tag: Optional[str]

Optional tag to be used to filter issues.

value instance-attribute

value: Any

Value of the field on which the issue has been detected.