suricata_check.checkers.interface.dummy ======================================= .. py:module:: suricata_check.checkers.interface.dummy .. autoapi-nested-parse:: DummyChecker. Classes ------- .. autoapisummary:: suricata_check.checkers.interface.dummy.DummyChecker Module Contents --------------- .. py:class:: DummyChecker(include: Optional[collections.abc.Iterable[str]] = None) Bases: :py:obj:`suricata_check.checkers.interface.checker.CheckerInterface` Dummy class to prevent runtime errors on import. Log an error due to failed imports for the checker. .. py:attribute:: codes A Mapping of issue codes emitted by the checker to metadata for those issue types. The metadata is structured in the form of a Mapping from attribute name to attribute value. The one mandatory metadata attribute is severity, which must be one of the levels provided by the `logging` module .. py:attribute:: enabled_by_default :value: False A boolean indicating if the checker is enabled by default when discovered automatically.