mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-07 06:17:55 +00:00
71 lines
2.1 KiB
Rust
71 lines
2.1 KiB
Rust
use std::net::SocketAddr;
|
|
|
|
use metrics_exporter_prometheus::PrometheusBuilder;
|
|
use sentry::IntoDsn;
|
|
use tracing_subscriber::{EnvFilter, layer::SubscriberExt, util::SubscriberInitExt};
|
|
|
|
use sentry_tracing::event_from_event;
|
|
|
|
pub mod db;
|
|
pub mod runtime_config;
|
|
pub mod state;
|
|
|
|
pub mod _config;
|
|
pub use crate::_config::CONFIG as config;
|
|
|
|
// functions in this file are only used by the main function in macros/entrypoint.rs
|
|
|
|
pub use pk_macros::main;
|
|
|
|
pub fn init_logging(component: &str) {
|
|
let sentry_layer =
|
|
sentry_tracing::layer().event_mapper(|md, ctx| match md.metadata().level() {
|
|
&tracing::Level::ERROR => {
|
|
// for some reason this works, but letting the library handle it doesn't
|
|
let event = event_from_event(md, ctx);
|
|
sentry::capture_event(event);
|
|
sentry_tracing::EventMapping::Ignore
|
|
}
|
|
_ => sentry_tracing::EventMapping::Ignore,
|
|
});
|
|
|
|
if config.json_log {
|
|
let mut layer = json_subscriber::layer();
|
|
layer.inner_layer_mut().add_static_field(
|
|
"component",
|
|
serde_json::Value::String(component.to_string()),
|
|
);
|
|
tracing_subscriber::registry()
|
|
.with(sentry_layer)
|
|
.with(layer)
|
|
.with(EnvFilter::from_default_env())
|
|
.init();
|
|
} else {
|
|
tracing_subscriber::registry()
|
|
.with(sentry_layer)
|
|
.with(tracing_subscriber::fmt::layer())
|
|
.with(EnvFilter::from_default_env())
|
|
.init();
|
|
}
|
|
}
|
|
|
|
pub fn init_metrics() -> anyhow::Result<()> {
|
|
if config.run_metrics_server {
|
|
PrometheusBuilder::new()
|
|
.with_http_listener("[::]:9000".parse::<SocketAddr>().unwrap())
|
|
.install()?;
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
pub fn init_sentry() -> sentry::ClientInitGuard {
|
|
sentry::init(sentry::ClientOptions {
|
|
dsn: config
|
|
.sentry_url
|
|
.clone()
|
|
.map(|u| u.into_dsn().unwrap())
|
|
.flatten(),
|
|
release: sentry::release_name!(),
|
|
..Default::default()
|
|
})
|
|
}
|