memfaultd 1.26.1

Memfault daemon for embedded Linux systems. Observability, logging, crash reporting, and updating all in one service. Learn more at https://docs.memfault.com/
Documentation
//
// Copyright (c) Memfault, Inc.
// See License.txt for details
pub mod completed_log;
pub mod messages;
pub use completed_log::CompletedLog;
pub mod log_collector;
pub use log_collector::{LogCollector, LogCollectorConfig};
pub mod headroom;
pub use headroom::HeadroomLimiter;
#[cfg(feature = "systemd")]
pub mod journald_parser;
#[cfg(feature = "systemd")]
pub mod journald_provider;
pub mod levels;
pub mod log_entry;
mod log_file;
pub mod log_filter;
pub mod log_level_mapper;
pub mod log_to_metrics;
mod recovery;
#[cfg(feature = "syslog")]
pub mod syslog;