8 releases

0.2.5 Jun 12, 2024
0.2.4 Aug 1, 2023
0.2.3 Jun 16, 2023
0.2.2 Mar 8, 2023
0.0.0 Mar 19, 2022

#96 in Debugging

Download history 9872/week @ 2024-08-03 10291/week @ 2024-08-10 14258/week @ 2024-08-17 13823/week @ 2024-08-24 16521/week @ 2024-08-31 15295/week @ 2024-09-07 12282/week @ 2024-09-14 16461/week @ 2024-09-21 15260/week @ 2024-09-28 13825/week @ 2024-10-05 14424/week @ 2024-10-12 14483/week @ 2024-10-19 10863/week @ 2024-10-26 10787/week @ 2024-11-02 7313/week @ 2024-11-09 8645/week @ 2024-11-16

39,748 downloads per month
Used in 9 crates (8 directly)

MIT/Apache

57KB
1K SLoC

tracing-loki

A tracing layer for Grafana Loki.

Build status

Documentation

https://docs.rs/tracing-loki

Usage

Add this to your Cargo.toml:

[dependencies]
tracing-loki = "0.1"

Example

use tracing_subscriber::layer::SubscriberExt;
use tracing_subscriber::util::SubscriberInitExt;
use std::process;
use url::Url;

#[tokio::main]
async fn main() -> Result<(), tracing_loki::Error> {
    let (layer, task) = tracing_loki::builder()
        .label("host", "mine")?
        .extra_field("pid", format!("{}", process::id()))?
        .build_url(Url::parse("http://127.0.0.1:3100").unwrap())?;

    // We need to register our layer with `tracing`.
    tracing_subscriber::registry()
        .with(layer)
        // One could add more layers here, for example logging to stdout:
        // .with(tracing_subscriber::fmt::Layer::new())
        .init();

    // The background task needs to be spawned so the logs actually get
    // delivered.
    tokio::spawn(task);

    tracing::info!(
        task = "tracing_setup",
        result = "success",
        "tracing successfully set up",
    );

    Ok(())
}

Dependencies

~8–19MB
~250K SLoC