mirror of
https://github.com/rustfs/rustfs.git
synced 2026-01-17 01:30:33 +00:00
* main: improve code for `obs` crate # Conflicts: # crates/obs/examples/server.rs # crates/obs/src/lib.rs # rustfs/src/main.rs
54 lines
1.4 KiB
Rust
54 lines
1.4 KiB
Rust
//! # RustFS Observability
|
|
//!
|
|
//! provides tools for system and service monitoring
|
|
//!
|
|
//! ## feature mark
|
|
//!
|
|
//! - `file`: enable file logging enabled by default
|
|
//! - `gpu`: gpu monitoring function
|
|
//! - `kafka`: enable kafka metric output
|
|
//! - `webhook`: enable webhook notifications
|
|
//! - `full`: includes all functions
|
|
//!
|
|
//! to enable gpu monitoring add in cargo toml
|
|
//!
|
|
//! ```toml
|
|
//! # using gpu monitoring
|
|
//! rustfs-obs = { version = "0.1.0", features = ["gpu"] }
|
|
//!
|
|
//! # use all functions
|
|
//! rustfs-obs = { version = "0.1.0", features = ["full"] }
|
|
//! ```
|
|
///
|
|
/// ## Usage
|
|
///
|
|
/// ```no_run
|
|
/// use rustfs_obs::init_obs;
|
|
///
|
|
/// # #[tokio::main]
|
|
/// # async fn main() {
|
|
/// let (logger, guard) = init_obs(None).await;
|
|
/// # }
|
|
/// ```
|
|
mod config;
|
|
mod entry;
|
|
mod global;
|
|
mod logger;
|
|
mod metrics;
|
|
mod sinks;
|
|
mod system;
|
|
mod telemetry;
|
|
mod worker;
|
|
|
|
pub use config::{AppConfig, LoggerConfig, OtelConfig, SinkConfig};
|
|
pub use entry::args::Args;
|
|
pub use entry::audit::{ApiDetails, AuditLogEntry};
|
|
pub use entry::base::BaseLogEntry;
|
|
pub use entry::unified::{ConsoleLogEntry, ServerLogEntry, UnifiedLogEntry};
|
|
pub use entry::{LogKind, LogRecord, ObjectVersion, SerializableLevel};
|
|
pub use global::*;
|
|
pub use logger::Logger;
|
|
pub use logger::{get_global_logger, init_global_logger, start_logger};
|
|
pub use logger::{log_debug, log_error, log_info, log_trace, log_warn, log_with_context};
|
|
pub use system::SystemObserver;
|