Coder Social home page Coder Social logo

provide examples about rust-zipkin HOT 8 OPEN

palantir avatar palantir commented on May 24, 2024 1
provide examples

from rust-zipkin.

Comments (8)

sfackler avatar sfackler commented on May 24, 2024 1

Sure - I think a little toy HTTP server would make sense as a decent example.

from rust-zipkin.

sfackler avatar sfackler commented on May 24, 2024 1

If you have an OpenSpan and want to fully transfer it to the other thread, you can use the detach and attach methods:

let span = my_tracer.next_span()
    .with_name("background-thingy")
    .detach();

thread::spawn(move || {
    let span = span.attach();
    // do stuff...
});

If you don't have an OpenSpan (or have one but don't want to transfer ownership), you can just grab the context from it and send that to the other thread:

let context = current_guard.context();

thread::spawn(move || {
    let current_guard = tracer.set_current(context);
    // do stuff...
});

from rust-zipkin.

softprops avatar softprops commented on May 24, 2024

In particular I'm wanting to see how to transfer contexts across threads. Since CurrentGuard can't be Send, I'm missing what the pattern in practice looks like

from rust-zipkin.

softprops avatar softprops commented on May 24, 2024

In that first example, does the span information associated with "background-thing" get discarded when detaching? It seems the both detach/attach operations discard any built up span state. When attaching, it seems all operations on the open span would have no effect. I'm I understanding this right?

from rust-zipkin.

sfackler avatar sfackler commented on May 24, 2024

No, attaching and detaching doesn't discard any state. The only thing it changes is if the OpenSpan acts as a CurrentGuard in addition.

from rust-zipkin.

softprops avatar softprops commented on May 24, 2024

I'm looking to understand the use of mem::replace here

from rust-zipkin.

sfackler avatar sfackler commented on May 24, 2024

Detach consumes the old OpenSpan by value and returns a new one with the span's state.

from rust-zipkin.

softprops avatar softprops commented on May 24, 2024

Ah I see. Thanks!

from rust-zipkin.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.