We hold regular community meetings, see the calendar here: https://opencensus.io/community/
rghetia on master
Add Wrapper for WriteListener. … (compare)
<trace-without-root-span> in ObfuscatorServer results, though.
wrk --duration=1s --threads=1 --connections=1 http://localhost:8080 and I can't turn up any partial traces. wkr reported 2846 requests, jaeger seems to have them all and none are partial.
TagKey KEY = TagKey.create("some_id");
View latencyById = View.create(
Name.create("latency_by_id"),
"client latency by ID",
RpcMeasureConstants.GRPC_CLIENT_ROUNDTRIP_LATENCY,
Aggregation.Distribution.create(bucketBoundaries),
Arrays.asList(RpcMeasureConstants.RPC_METHOD, KEY));
Stats.getViewManager().registerView(latencyById);
...
try (Scope ss = tagger.emptyBuilder().put(KEY, "id12345").buildScoped()) {
// RPC
}