We have the following config for a Sinatra App:
zipkin_config = { service_name:ENV[ '...' ],
service_port:settings.port,
sampled_as_boolean:false,
sample_rate: 1,
json_api_host: ENV[ '..' ]}
use ZipkinTracer::RackHandler, zipkin_config
The span is displayed as "post", which I guess comes from the request method. How can I set it to request method and request path?