Merge pull request #1303 from eugenp/BAEL-574-zipkin
BAEL-574 - Removing redundant pattern check
This commit is contained in:
commit
181688a765
|
@ -45,7 +45,6 @@ public class BookServiceApplication {
|
||||||
delegate = new HttpZipkinSpanReporter(baseUrl, zipkinProperties.getFlushInterval(), zipkinProperties.getCompression().isEnabled(), spanMetricReporter);
|
delegate = new HttpZipkinSpanReporter(baseUrl, zipkinProperties.getFlushInterval(), zipkinProperties.getCompression().isEnabled(), spanMetricReporter);
|
||||||
if (!span.name.matches(skipPattern)) delegate.report(span);
|
if (!span.name.matches(skipPattern)) delegate.report(span);
|
||||||
}
|
}
|
||||||
if (!span.name.matches(skipPattern)) delegate.report(span);
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,6 @@ import zipkin.server.EnableZipkinServer;
|
||||||
@EnableZipkinServer
|
@EnableZipkinServer
|
||||||
public class ZipkinApplication {
|
public class ZipkinApplication {
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
SpringApplication.run(ZipkinApplication.class, args);
|
SpringApplication.run(ZipkinApplication.class, args);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue