Event Severity

The Severity class is used to define the severity of a log event. This enum can only be used in the context of a log ingestion when calling the dynatrace_extension.Extension.report_event() method.

Members

class dynatrace_extension.Severity(value)[source]

Severity of an event ingested through log ingest.

EMERGENCY = 'EMERGENCY'
ERROR = 'ERROR'
ALERT = 'ALERT'
CRITICAL = 'CRITICAL'
SEVERE = 'SEVERE'
WARN = 'WARN'
NOTICE = 'NOTICE'
INFO = 'INFO'
DEBUG = 'DEBUG'