7 releases

0.2.4 Aug 1, 2023
0.2.3 Jun 16, 2023
0.2.2 Mar 8, 2023
0.2.1 Jul 2, 2022
0.0.0 Mar 19, 2022

#172 in Debugging

Download history 3670/week @ 2023-12-23 6126/week @ 2023-12-30 8442/week @ 2024-01-06 9446/week @ 2024-01-13 9634/week @ 2024-01-20 8764/week @ 2024-01-27 4478/week @ 2024-02-03 8059/week @ 2024-02-10 8213/week @ 2024-02-17 8129/week @ 2024-02-24 8905/week @ 2024-03-02 10183/week @ 2024-03-09 9263/week @ 2024-03-16 8584/week @ 2024-03-23 8727/week @ 2024-03-30 8635/week @ 2024-04-06

37,460 downloads per month
Used in 3 crates

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

~9–23MB
~332K SLoC