gstackoverflow
gstackoverflow

Reputation: 36976

How to put argument values to traces of method annotated with @Observed

I have a method annotated with @Observed annotation:

@Observed(
    name = "foo",
    contextualName = "foo",
)
fun foo(arg1: String, arg2: Integer){...}

When I go to Zipkin I see corresponding trace but it contains only method name and information about spring boot version:

enter image description here

It would be useful to have argument values in the trace. Is there way to achieve it ?

Upvotes: 0

Views: 48

Answers (0)

Related Questions