Crates.io | tracing-layer-core |
lib.rs | tracing-layer-core |
version | 0.3.0 |
source | src |
created_at | 2024-04-15 20:58:47.400968 |
updated_at | 2024-07-03 18:11:22.307401 |
description | Send filtered tracing events to a webhook endpoint |
homepage | |
repository | https://github.com/seanpianka/tracing-layer-core/ |
max_upload_size | |
id | 1209640 |
size | 31,720 |
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();
slack_worker.start();
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 MIT License - see the LICENSE file for details.