#![deny(clippy::pedantic)]
#![allow(clippy::missing_errors_doc)]
#![allow(clippy::missing_panics_doc)]
use std::fs::File;
use std::{env, io};
use tracing_subscriber::layer::SubscriberExt;
use tracing_subscriber::util::SubscriberInitExt;
use tracing_subscriber::{EnvFilter, Layer};
pub const LOG_CONSENSUS: &str = "fm::consensus";
pub const LOG_CORE: &str = "fm::core";
pub const LOG_SERVER: &str = "fm::server";
pub const LOG_DB: &str = "fm::db";
pub const LOG_DEVIMINT: &str = "fm::devimint";
pub const LOG_NET: &str = "fm::net";
pub const LOG_NET_IROH: &str = "fm::net::iroh";
pub const LOG_NET_WS: &str = "fm::net::ws";
pub const LOG_NET_API: &str = "fm::net::api";
pub const LOG_NET_PEER_DKG: &str = "fm::net::peer::dkg";
pub const LOG_NET_PEER: &str = "fm::net::peer";
pub const LOG_NET_AUTH: &str = "fm::net::auth";
pub const LOG_TASK: &str = "fm::task";
pub const LOG_RUNTIME: &str = "fm::runtime";
pub const LOG_TEST: &str = "fm::test";
pub const LOG_TIMING: &str = "fm::timing";
pub const LOG_CLIENT: &str = "fm::client";
pub const LOG_CLIENT_DB: &str = "fm::client::db";
pub const LOG_CLIENT_EVENT_LOG: &str = "fm::client::event-log";
pub const LOG_MODULE_MINT: &str = "fm::module::mint";
pub const LOG_MODULE_META: &str = "fm::module::meta";
pub const LOG_MODULE_WALLET: &str = "fm::module::wallet";
pub const LOG_MODULE_WALLETV2: &str = "fm::module::walletv2";
pub const LOG_MODULE_LN: &str = "fm::module::ln";
pub const LOG_MODULE_LNV2: &str = "fm::module::lnv2";
pub const LOG_CLIENT_REACTOR: &str = "fm::client::reactor";
pub const LOG_CLIENT_NET: &str = "fm::client::net";
pub const LOG_CLIENT_NET_API: &str = "fm::client::net::api";
pub const LOG_CLIENT_BACKUP: &str = "fm::client::backup";
pub const LOG_CLIENT_RECOVERY: &str = "fm::client::recovery";
pub const LOG_CLIENT_RECOVERY_MINT: &str = "fm::client::recovery::mint";
pub const LOG_CLIENT_MODULE_MINT: &str = "fm::client::module::mint";
pub const LOG_CLIENT_MODULE_META: &str = "fm::client::module::meta";
pub const LOG_CLIENT_MODULE_LN: &str = "fm::client::module::ln";
pub const LOG_CLIENT_MODULE_LNV2: &str = "fm::client::module::lnv2";
pub const LOG_CLIENT_MODULE_WALLET: &str = "fm::client::module::wallet";
pub const LOG_CLIENT_MODULE_WALLETV2: &str = "fm::client::module::walletv2";
pub const LOG_CLIENT_MODULE_GW: &str = "fm::client::module::gw";
pub const LOG_CLIENT_MODULE_GWV2: &str = "fm::client::module::gwv2";
pub const LOG_GATEWAY: &str = "fm::gw";
pub const LOG_GATEWAY_UI: &str = "fm::gw::ui";
pub const LOG_LIGHTNING: &str = "fm::gw::lightning";
pub const LOG_LIGHTNING_LDK: &str = "fm::gw::lightning::ldk";
pub const LOG_BITCOIND_ESPLORA: &str = "fm::bitcoind::esplora";
pub const LOG_BITCOIND_CORE: &str = "fm::bitcoind::bitcoincore";
pub const LOG_BITCOIND: &str = "fm::bitcoind";
pub const LOG_BITCOIN: &str = "fm::bitcoin";
#[cfg(feature = "telemetry")]
static TRACER_PROVIDER: std::sync::OnceLock<opentelemetry_sdk::trace::SdkTracerProvider> =
std::sync::OnceLock::new();
#[derive(Default)]
pub struct TracingSetup {
base_level: Option<String>,
extra_directives: Option<String>,
#[cfg(feature = "telemetry")]
tokio_console_bind: Option<std::net::SocketAddr>,
#[cfg(feature = "telemetry")]
with_jaeger: bool,
with_file: Option<File>,
}
impl TracingSetup {
#[cfg(feature = "telemetry")]
pub fn tokio_console_bind(&mut self, address: Option<std::net::SocketAddr>) -> &mut Self {
self.tokio_console_bind = address;
self
}
#[cfg(feature = "telemetry")]
pub fn with_jaeger(&mut self, enabled: bool) -> &mut Self {
self.with_jaeger = enabled;
self
}
pub fn with_file(&mut self, file: Option<File>) -> &mut Self {
self.with_file = file;
self
}
pub fn with_base_level(&mut self, level: impl Into<String>) -> &mut Self {
self.base_level = Some(level.into());
self
}
pub fn with_directive(&mut self, directive: &str) -> &mut Self {
if let Some(old) = self.extra_directives.as_mut() {
*old = format!("{old},{directive}");
} else {
self.extra_directives = Some(directive.to_owned());
}
self
}
pub fn init(&mut self) -> anyhow::Result<()> {
use tracing_subscriber::fmt::writer::{BoxMakeWriter, Tee};
let var = env::var(tracing_subscriber::EnvFilter::DEFAULT_ENV).unwrap_or_default();
let filter_layer = EnvFilter::builder().parse(format!(
"{},{},{},{},{},{},{},{},{}",
self.base_level.as_deref().unwrap_or("info"),
"jsonrpsee_core::client::async_client=off",
"hyper=off",
"h2=off",
"jsonrpsee_server=warn,jsonrpsee_server::transport=off",
"AlephBFT-=error",
"iroh=error",
var,
self.extra_directives.as_deref().unwrap_or(""),
))?;
let fmt_writer = match self.with_file.take() {
Some(file) => BoxMakeWriter::new(Tee::new(io::stderr, file)),
_ => BoxMakeWriter::new(io::stderr),
};
let fmt_layer = tracing_subscriber::fmt::layer()
.with_thread_names(false) .with_writer(fmt_writer)
.with_filter(filter_layer);
let console_opt = || -> Option<Box<dyn Layer<_> + Send + Sync + 'static>> {
#[cfg(feature = "telemetry")]
if let Some(l) = self.tokio_console_bind {
let tracer = console_subscriber::ConsoleLayer::builder()
.retention(std::time::Duration::from_mins(1))
.server_addr(l)
.spawn()
.with_filter(EnvFilter::new("tokio=trace,runtime=trace"));
return Some(tracer.boxed());
}
None
};
let telemetry_layer_opt = || -> Option<Box<dyn Layer<_> + Send + Sync + 'static>> {
#[cfg(feature = "telemetry")]
if self.with_jaeger {
use opentelemetry::trace::TracerProvider as _;
let exporter = match opentelemetry_otlp::SpanExporter::builder()
.with_tonic()
.build()
{
Ok(exporter) => exporter,
Err(e) => {
eprintln!(
"Failed to create OTLP span exporter, continuing without telemetry: {e}"
);
return None;
}
};
let tracer_provider = opentelemetry_sdk::trace::SdkTracerProvider::builder()
.with_batch_exporter(exporter)
.with_resource(
opentelemetry_sdk::Resource::builder()
.with_service_name("fedimint")
.build(),
)
.build();
let _ = TRACER_PROVIDER.set(tracer_provider.clone());
opentelemetry::global::set_tracer_provider(tracer_provider.clone());
let tracer = tracer_provider.tracer("fedimint");
return Some(tracing_opentelemetry::layer().with_tracer(tracer).boxed());
}
None
};
tracing_subscriber::registry()
.with(fmt_layer)
.with(console_opt())
.with(telemetry_layer_opt())
.try_init()?;
Ok(())
}
}
pub fn shutdown() {
#[cfg(feature = "telemetry")]
if let Some(provider) = TRACER_PROVIDER.get()
&& let Err(e) = provider.shutdown()
{
eprintln!("Error shutting down tracer provider: {e}");
}
}