mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-26 16:28:15 +00:00
75 lines
2.0 KiB
Rust
75 lines
2.0 KiB
Rust
//! RustFs Notify - A flexible and extensible event notification system for object storage.
|
|
//!
|
|
//! This library provides a Rust implementation of a storage bucket notification system,
|
|
//! similar to RustFS's notification system. It supports sending events to various targets
|
|
//! (like Webhook and MQTT) and includes features like event persistence and retry on failure.
|
|
|
|
pub mod args;
|
|
pub mod arn;
|
|
pub mod config;
|
|
pub mod error;
|
|
pub mod event;
|
|
pub mod factory;
|
|
pub mod global;
|
|
pub mod integration;
|
|
pub mod notifier;
|
|
pub mod registry;
|
|
pub mod rules;
|
|
pub mod store;
|
|
pub mod stream;
|
|
pub mod target;
|
|
pub mod utils;
|
|
|
|
// Re-exports
|
|
pub use config::{parse_config, Config, KV, KVS};
|
|
pub use error::{NotificationError, StoreError, TargetError};
|
|
pub use event::{Event, EventLog, EventName};
|
|
pub use integration::NotificationSystem;
|
|
pub use rules::BucketNotificationConfig;
|
|
use std::io::IsTerminal;
|
|
pub use target::Target;
|
|
|
|
use tracing_subscriber::{fmt, prelude::*, util::SubscriberInitExt, EnvFilter};
|
|
|
|
/// Initialize the tracing log system
|
|
///
|
|
/// # Example
|
|
/// ```
|
|
/// notify::init_logger(notify::LogLevel::Info);
|
|
/// ```
|
|
pub fn init_logger(level: LogLevel) {
|
|
let filter = EnvFilter::default().add_directive(level.into());
|
|
tracing_subscriber::registry()
|
|
.with(filter)
|
|
.with(
|
|
fmt::layer()
|
|
.with_target(true)
|
|
.with_target(true)
|
|
.with_ansi(std::io::stdout().is_terminal())
|
|
.with_thread_names(true)
|
|
.with_thread_ids(true)
|
|
.with_file(true)
|
|
.with_line_number(true),
|
|
)
|
|
.init();
|
|
}
|
|
|
|
/// Log level definition
|
|
pub enum LogLevel {
|
|
Debug,
|
|
Info,
|
|
Warn,
|
|
Error,
|
|
}
|
|
|
|
impl From<LogLevel> for tracing_subscriber::filter::Directive {
|
|
fn from(level: LogLevel) -> Self {
|
|
match level {
|
|
LogLevel::Debug => "debug".parse().unwrap(),
|
|
LogLevel::Info => "info".parse().unwrap(),
|
|
LogLevel::Warn => "warn".parse().unwrap(),
|
|
LogLevel::Error => "error".parse().unwrap(),
|
|
}
|
|
}
|
|
}
|