-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
38 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
pub mod configurations; | ||
pub mod routes; | ||
pub mod startup; | ||
pub mod telemetry; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
use tracing::{subscriber::set_global_default, Subscriber}; | ||
use tracing_bunyan_formatter::{BunyanFormattingLayer, JsonStorageLayer}; | ||
use tracing_log::LogTracer; | ||
use tracing_subscriber::{layer::SubscriberExt, EnvFilter, Registry}; | ||
|
||
/// Compose multiple layers into a `tracing`'s subscriber. | ||
/// | ||
/// # Implementation Notes | ||
/// | ||
/// We are using `impl Subscriber` as return type to avoid having to | ||
/// spell out the actual type of the returned subscriber, which is | ||
/// indeed quite complex. | ||
/// We need to explicitly call out that the returned subscriber is | ||
/// `Send` and `Sync` to make it possible to pass it to `init_subscriber` | ||
/// later on. | ||
pub fn get_subscriber(name: String, env_filter: String) -> impl Subscriber + Send + Sync { | ||
let env_filter = | ||
EnvFilter::try_from_default_env().unwrap_or_else(|_| EnvFilter::new(env_filter)); | ||
let formatting_layer = BunyanFormattingLayer::new(name.into(), std::io::stdout); | ||
Registry::default() | ||
.with(env_filter) | ||
.with(JsonStorageLayer) | ||
.with(formatting_layer) | ||
} | ||
|
||
/// Register a subscriber as global default to process span data.\ | ||
/// | ||
/// # Implementation Notes | ||
/// | ||
/// It is important to call this function only once. | ||
pub fn inti_subscriber(subscriber: impl Subscriber + Send + Sync) { | ||
LogTracer::init().expect("Failed to set logger"); | ||
set_global_default(subscriber).expect("Failed to set subscriber"); | ||
} |