Updates to latest zipkin, adding spring.zipkin.compression.enabled flag
This updates to latest zipkin, adding a flag to gzip spans before posting them. Note this is set to false by default as it requires servers to also be latest. We can flip the default once we can assume that. Ex. `spring.zipkin.compression.enabled = true`
This commit is contained in:
@@ -102,7 +102,7 @@ public class ZipkinTests extends AbstractIntegrationTest {
|
||||
private ZipkinSpanReporter getSpanCollector(ZipkinProperties zipkin,
|
||||
SpanReporterService spanReporterService) {
|
||||
return new HttpZipkinSpanReporter(zipkin.getBaseUrl(), zipkin.getFlushInterval(),
|
||||
spanReporterService);
|
||||
zipkin.getCompression().isEnabled(), spanReporterService);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user