daemon8-ingest 0.3.3

HTTP, UDP, and Unix socket ingestion endpoints for daemon8
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: LicenseRef-FCL-1.0-ALv2
// Copyright (c) 2026 Havy.tech, LLC

use thiserror::Error;

#[derive(Debug, Error)]
pub enum IngestError {
    #[error("bind failed: {0}")]
    Bind(#[from] std::io::Error),
}

pub type Result<T> = std::result::Result<T, IngestError>;