19 releases

0.8.0 Dec 28, 2023
0.7.1 Oct 2, 2022
0.7.0 Apr 18, 2022
0.6.1 Mar 13, 2022
0.2.0 Dec 23, 2019

#99 in Development tools

Download history 241/week @ 2024-01-03 159/week @ 2024-01-10 193/week @ 2024-01-17 391/week @ 2024-01-24 203/week @ 2024-01-31 135/week @ 2024-02-07 348/week @ 2024-02-14 349/week @ 2024-02-21 572/week @ 2024-02-28 638/week @ 2024-03-06 5643/week @ 2024-03-13 2767/week @ 2024-03-20 3300/week @ 2024-03-27 3122/week @ 2024-04-03 3210/week @ 2024-04-10 5562/week @ 2024-04-17

15,674 downloads per month
Used in quickjs_runtime

MIT license

37KB
681 lines

tracing-gelf

A Graylog tracing library.

CI License Cargo Documentation

Usage

Add this to your Cargo.toml:

[dependencies]
tracing-gelf = "0.8.0"

TCP Logging

use tracing_gelf::Logger;

#[tokio::main]
async fn main() {
    // Graylog address
    let address = "127.0.0.1:12201";

    // Initialize subscriber
    let conn_handle = Logger::builder().init_tcp(address).unwrap();

    // Spawn background task
    // Any futures executor can be used
    tokio::spawn(conn_handle.connect());

    // Send a log to Graylog
    tracing::info!(message = "oooh, what's in here?");

    // Create a span
    let span = tracing::info_span!("cave");
    span.in_scope(|| {
        let test = tracing::info_span!("deeper in cave", smell = "damp");
        test.in_scope(|| {
            // Send a log to Graylog, inside a nested span
            tracing::warn!(message = "oh god, it's dark in here");
        })
    });

    // Send a log to Graylog
    tracing::error!(message = "i'm glad to be out", spook_lvl = 3, ruck_sack = ?["glasses", "inhaler", "large bat"]);
}

UDP Logging

use tracing_gelf::Logger;

#[tokio::main]
async fn main() {
    // Graylog address
    let address = "127.0.0.1:12202";

    // Start tracing
    let bg_task = Logger::builder().init_udp(address).unwrap();

    // Spawn background task
    // Any futures executor can be used
    tokio::spawn(bg_task);

    // Send a log to Graylog
    tracing::info!(message = "our dreams feel real while we're in them");

    // Create a span
    let span = tracing::info_span!("level 1");
    span.in_scope(|| {
        // Log inside a span
        tracing::warn!(message = "we need to go deeper", music = "hans zimmer");

        // Create an nested span
        let inner_span = tracing::info_span!("level 5");
        inner_span.in_scope(|| {
            // Log inside nested span
            tracing::error!(message = "you killed me");
        });
    });

    // Log a structured log
    tracing::info!(message = "he's out", spinning_top = true);
}

Dependencies

~5–17MB
~189K SLoC