sofastack / sofa-rpc-boot-projects

SOFABoot projects for SOFARPC, include starter and samples.
https://github.com/sofastack/sofa-rpc
Apache License 2.0
292 stars 117 forks source link

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

Closed khotyn closed 5 years ago

khotyn commented 5 years ago

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.