| Crates.io | tracing-layer-core |
| lib.rs | tracing-layer-core |
| version | 0.3.1 |
| created_at | 2024-04-15 20:58:47.400968+00 |
| updated_at | 2025-08-23 19:19:37.920323+00 |
| description | Send filtered tracing events to a webhook endpoint |
| homepage | |
| repository | https://github.com/seanpianka/tracing-layer-core/ |
| max_upload_size | |
| id | 1209640 |
| size | 93,537 |
This repository contains Layer implementations for sending tracing events to Slack and Discord.
DiscordLayer and SlackLayer send POST requests via tokio and reqwest to a Discord Webhook URL and Slack Webhook URL for each new tracing event, depending on the user-supplied event filtering rules. The format of the embedded message is statically defined.
This layer also looks for an optional JsonStorageLayer extension on the parent span of each event. This extension may contain additional contextual information for the parent span of an event, which is included into the Discord message.
Add the following to your Cargo.toml:
[dependencies]
tracing-layer-slack = "0"
tracing-layer-discord = "0"
Then, in your application:
use regex::Regex;
use tracing::{info, instrument, warn};
use tracing_subscriber::{layer::SubscriberExt, Registry};
use tracing_layer_slack::{EventFilters, SlackLayer};
use tracing_layer_discord::{EventFilters, DiscordLayer};
#[instrument]
pub async fn network_io(id: u64) {
warn!(user_id = id, "had to retry the request once");
}
#[tokio::main]
async fn main() {
// Only show events from where this example code is the target.
let target_to_filter: EventFilters = Regex::new("simple").unwrap().into();
let app_name = "test-app".to_string();
let (slack_layer, slack_worker) = SlackLayer::builder(app_name.clone(), target_to_filter.clone()).build();
let (discord_layer, discord_worker) = DiscordLayer::builder(app_name, target_to_filter).build();
let subscriber = Registry::default().with(slack_layer);
tracing::subscriber::set_global_default(subscriber).unwrap();
// Start the workers and spawn the background async tasks on the current executor.
discord_worker.start().await;
slack_worker.start().await;
network_io(123).await;
// Shutdown the workers and ensure their message cache is flushed.
slack_worker.shutdown().await;
discord_worker.shutdown().await;
}
This project is licensed under the Apache-2.0 License - see the LICENSE file for details.