rsigma-runtime 0.18.0

Streaming runtime for rsigma — event sources, sinks, and log processing pipeline
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Errors from the rsigma runtime (streaming I/O, processing, engine operations).
#[derive(Debug, thiserror::Error)]
pub enum RuntimeError {
    /// I/O error (stdin read, file write, etc.)
    #[error("I/O error: {0}")]
    Io(#[from] std::io::Error),
    /// JSON serialization error in a sink.
    #[error("serialization error: {0}")]
    Serialization(#[from] serde_json::Error),
    /// A permanent delivery failure that must not be retried (for example a
    /// 4xx from a webhook target whose rendered body will not heal on retry).
    /// The async delivery layer routes these straight to the DLQ instead of
    /// applying the retry/backoff schedule.
    #[error("permanent delivery failure: {0}")]
    Permanent(String),
}