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
1
2
3
4
5
6
7
8
9
10
11
//
// Copyright (c) Memfault, Inc.
// See License.txt for details
mod report;
pub use report::{HrtReport, HRT_DEFAULT_MAX_SAMPLES_PER_MIN};

mod schema;
pub use schema::write_report_to_disk;
// Export for use in tests
#[cfg(test)]
pub use schema::HighResTelemetryV1;