Git Product home page Git Product logo

Comments (6)

zhongzc avatar zhongzc commented on June 20, 2024 3

I don't have any opinions in general, but I'd also like to suggest an interesting option:

#[trace(
    name = "test-span",
    properties = {"k": "v", "a": "{a:?}"}
)]
fn f(a: u32) -> u32 {
    a
}

from minitrace-rust.

andylokandy avatar andylokandy commented on June 20, 2024 2

Seems to be a feature good to have. But the property on macro can only contains static str. For calculated property, minitrace had a LocalSpan::add_property to local parent, which was then replaced by Event. Maybe it'll be nice to add LocalSpan::add_property back.

Which one is more suitable for your case? LocalSpan::add_property or Event?

from minitrace-rust.

andylokandy avatar andylokandy commented on June 20, 2024 1

The LocalSpan::add_property might also work great, I assume it allows me to access the span created by the trace macro?

yes

from minitrace-rust.

dotansimha avatar dotansimha commented on June 20, 2024

Seems to be a feature good to have. But the property on macro can only contains static str.

Yeah, that makes perfect sense. My use case is for adding static properties. For dynamic properties, I'm constructing the Span manually (without the macro) and then add my dynamic properties.

For calculated property, minitrace had a LocalSpan::add_property to local parent, which was then replaced by Event. Maybe it'll be nice to add LocalSpan::add_property back.

Which one is more suitable for your case? LocalSpan::add_property or Event?

Event feels like is has a different use case, because I might want to add there some in-depth detailing.

The LocalSpan::add_property might also work great, I assume it allows me to access the span created by the trace macro?

from minitrace-rust.

andylokandy avatar andylokandy commented on June 20, 2024

I've some ideas on the macro syntax:

#[trace(name = "test-span", "k" = "v", "a" = "{a:?}")]
fn f(a: u32) -> u32 {
    a
}

#[trace(name = "test-span", property("k" = "v", "a" = "{a:?}"))]
fn f(a: u32) -> u32 {
    a
}

#[trace(name = "test-span"))]
fn f(a: u32) -> u32 {
    LocalSpan::add_properties(|| [("k", "v"), ("a", format!("{a:?}"))]);   // not adding new syntax to macro
    a
}

What do you think? @zhongzc

from minitrace-rust.

dotansimha avatar dotansimha commented on June 20, 2024

Yeah, I think the more explicit way of using properties = { ... } is more readable.

from minitrace-rust.

Related Issues (20)

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.