sofastack/sofa-rpc-boot-projects

Add disable tracing configuration via Spring Boot's application.properties

khotyn opened this issue · 0 comments

If a user wants to disable tracing functionality in SOFARPC, he can only add

System.setProperty(RpcOptions.DEFAULT_TRACER, "");

or

RpcConfigs.putValue(RpcOptions.DEFAULT_TRACER, "")

in the code.

We should provide a Spring Boot's way to disable tracing.