AuditEventLevel
Namespace: Meshmakers.Octo.Runtime.Contracts.AuditTrails
Severity classification for an AuditEvent. Mirrors the platform event-store levels deliberately (Information, Warning, Error, Critical) so a host-side sink that persists events to the event log can map 1:1 without lossy widening or narrowing.
public enum AuditEventLevel
Inheritance Object → ValueType → Enum → AuditEventLevel
Implements IComparable, ISpanFormattable, IFormattable, IConvertible
Fields
| Name | Value | Description |
|---|---|---|
| Information | 0 | Routine notable event (e.g. archive transitioned to Active). |
| Warning | 1 | Event that may surprise an operator (e.g. extension enum value override). |
| Error | 2 | Recoverable error worth surfacing (e.g. failed background-step rolled back). |
| Critical | 3 | Unrecoverable failure of a system-critical operation. |