Commit Graph

14 Commits

Author SHA1 Message Date
Alvin
ef5efd8041 Reduce scoping overhead of WebFlux and adds Benchmarks (#1111) 2018-10-18 22:10:53 +08:00
Marcin Grzejszczak
551429aba0 Fixing benchmarks? 2018-07-13 11:45:15 -04:00
Marcin Grzejszczak
b3710e5c2d Fixing benchmarks? 2018-07-13 11:39:07 -04:00
Marcin Grzejszczak
8a9a8c039b Fixed broken compilation 2018-07-13 11:08:01 -04:00
Marcin Grzejszczak
c801228015 TraceFilter -> TracingFilter 2018-05-17 07:56:45 +02:00
Marcin Grzejszczak
4682920675 Started the manually created span 2018-01-29 14:09:01 +01:00
Marcin Grzejszczak
4ed804590a Removed the last remnants of the legacy Spans... goodbye 2018-01-19 23:16:05 +01:00
Marcin Grzejszczak
7eb374b5a5 Sleuth now uses Brave (#829)
with this pull request we have rewritten the whole Sleuth internals to use Brave. That way we can leverage all the functionalities & instrumentations that Brave already has (https://github.com/openzipkin/brave/tree/master/instrumentation).

Migration guide is available here: https://github.com/spring-cloud/spring-cloud-sleuth/wiki/Spring-Cloud-Sleuth-2.0-Migration-Guide

fixes #711 - Brave instrumentation
fixes #92 - we move to Brave's Sampler
fixes #143 - Brave is capable of passing context
fixes #255 - we've moved away from Zipkin Stream server
fixes #305 - Brave has GRPC instrumentation (https://github.com/openzipkin/brave/tree/master/instrumentation/grpc)
fixes #459 - Brave (openzipkin/brave#510) & Zipkin (openzipkin/zipkin#1754) will deal with the AWS XRay instrumentation
fixes #577 - Messaging instrumentation has been rewritten
2018-01-19 22:45:47 +01:00
Dave Syer
c43345f197 Merge branch 'master' into 2.0.x 2017-07-26 11:52:10 +01:00
Dave Syer
5ad34cf6e6 Add startup benchmarks 2017-07-26 11:51:23 +01:00
Marcin Grzejszczak
c2d9c4b94e Should be working 2017-06-02 19:57:37 +02:00
Marcin Grzejszczak
816cfe317a Moved an executor aspect to a bean post processor
without this change when an executor implementation was a final class or had a final method - the application wouldn't start or would produce NPE at startup.
    with this change we have a custom bean post processor that wraps an aspect manualy either via a JDK Proxy when a class is final or a method is final or creates a CGLIB proxy if that's possible.

    fixes #550
2017-04-12 12:14:45 +02:00
Marcin Grzejszczak
0f29735c11 Managing spans with annotations (#526)
The main arguments for these features are

* api-agnostic means to collaborate with a span
    - use of annotations allows users to add to a span with no library dependency on a span api.
    This allows Sleuth to change its core api less impact to user code.
* reduced surface area for basic span operations.
    - without this feature one has to use the span api, which has lifecycle commands that
    could be used incorrectly. By only exposing scope, tag and log functionality, users can
    collaborate without accidentally breaking span lifecycle.
* collaboration with runtime generated code
    - with libraries such as Spring Data / Feign the implementations of interfaces are generated
    at runtime thus span wrapping of objects was tedious. Now you can provide annotations
     over interfaces and arguments of those interfaces

This PR is an adoption of @Koizumi85 work started here - https://github.com/Koizumi85/spring-cloud-sleuth-annotation

fixes #182
2017-02-27 15:26:03 +01:00
Marcin Grzejszczak
c62a13aa35 Added JMH & JMeter benchmarks for Sleuth 2016-03-24 16:55:42 +01:00