Commit Graph

772 Commits

Author SHA1 Message Date
Marcin Grzejszczak
33dd940fd7 RestTemplate: register Trace interceptor *first* in the chain; fixes #822 2018-01-20 17:48:32 +01:00
Marcin Grzejszczak
2bd669cb2c Should detach span from trace filter for async; fixes #728 2018-01-20 16:58:03 +01:00
buildmaster
9056db494b Bumping versions to 1.3.2.BUILD-SNAPSHOT after release 2018-01-16 14:52:36 +00:00
buildmaster
8dfe0a348d Going back to snapshots 2018-01-16 14:52:36 +00:00
buildmaster
339b42538a Update SNAPSHOT to 1.3.1.RELEASE 2018-01-16 14:49:56 +00:00
Marcin Grzejszczak
89176772bc Added a test for a pollable channel 2018-01-11 11:17:49 +01:00
Marcin Grzejszczak
c1f0951b7d Merge branch '1.2.x' into 1.3.x 2017-12-18 18:56:01 +01:00
Marcin Grzejszczak
09ab94b59d Fixed invalid reading from 'key' attribute of SpanTag; fixes #800 2017-12-18 18:54:47 +01:00
buildmaster
fc767e972e Bumping versions to 1.3.1.BUILD-SNAPSHOT after release 2017-11-22 14:42:35 +00:00
buildmaster
eb5abec075 Going back to snapshots 2017-11-22 14:42:34 +00:00
buildmaster
69f40d8606 Update SNAPSHOT to 1.3.0.RELEASE 2017-11-22 14:36:16 +00:00
Marcin Grzejszczak
4520268303 Made tests less brittle 2017-11-22 10:30:01 +01:00
Marcin Grzejszczak
82cff6e9e9 Merge branch '1.2.x' 2017-11-22 10:17:39 +01:00
Marcin Grzejszczak
2d53a38c14 Wrapping the feign object in a different way 2017-11-22 10:07:40 +01:00
Marcin Grzejszczak
b4ecb6f957 Ensure we're not tracing the traced feign clients
fixes #791
2017-11-21 19:22:44 +01:00
Marcin Grzejszczak
8e9fa7125c Ensure we're not tracing the traced feign clients
fixes #791
2017-11-21 19:07:06 +01:00
Marcin Grzejszczak
2ecd77d151 Fighting flakey tests 2017-11-17 12:02:05 +01:00
Marcin Grzejszczak
08b5d04133 Removed @EnableAsync from configuration; fixes #780 2017-11-14 18:03:03 +01:00
Marcin Grzejszczak
e2c11b592c Added RestTemplateBuilder support
fixes #777
2017-11-14 14:57:27 +01:00
Marcin Grzejszczak
360f7ed187 Removed type target from New/ContinueSpan; fixes #772 2017-11-14 11:32:25 +01:00
Marcin Grzejszczak
4203566d87 Exceptions that escape SpringMVC DispatcherServlet should be logged with trace & span IDs
without this change any exception that is not caught by a filter, get caught and logged by server's internals (e.g. Tomcat's Valve). To make the Valve log the exception together with the tracing information we would have to allow the tracing context remain in the thread after TraceFilter gets executed. That is problematic cause we're polluting the ThreadLocal and would have to assume that some component will eventually clear the context.

with this change we're trying to solve the issue from a different angle. Whenever an uncaught exception is thrown, we are already catching it in the `catch(...) {}` clause. It's enough to just log it at the error level and that way, regardless of the underlying server implementation (Tomcat, Undertow) we will log the uncaught exception and rethrow it.

fixes #714
2017-11-03 22:41:50 +01:00
Marcin Grzejszczak
f1a6a7f687 Merge branch '1.2.x' 2017-11-02 05:55:53 +01:00
Marcin Grzejszczak
dadb46731e Sleuth no longer corrupts Error Message Channel Headers (#765)
fixes #761
2017-11-01 14:21:41 +01:00
buildmaster
30d3379347 Going back to snapshots 2017-10-24 08:48:01 +00:00
buildmaster
8950751782 Update SNAPSHOT to 1.3.0.RC1 2017-10-24 08:46:31 +00:00
Marcin Grzejszczak
c4241413a0 Merge branch '1.2.x' 2017-10-23 20:40:33 +02:00
Marcin Grzejszczak
3c2c43adff Fixed the invalid closing of spans; fixes #759 2017-10-23 19:39:08 +02:00
Marcin Grzejszczak
5fff2e03a2 Merge branch '1.2.x' 2017-10-20 12:48:11 +02:00
Marcin Grzejszczak
6f85526096 Setting headers instead of adding them for Zuul; fixes #755 2017-10-20 12:47:15 +02:00
Marcin Grzejszczak
5bdc64ab6c Merged 1.2.x to master 2017-10-19 13:49:29 +02:00
Dave Syer
70821f4dc3 Test executor channel interceptor 2017-10-18 10:13:57 +01:00
Dave Syer
00e9a1f5dc Add tests for native headers in message interceptor 2017-10-18 10:13:57 +01:00
Dave Syer
c21a1e6dda Test for intercepting broker channel 2017-10-18 10:13:57 +01:00
Dave Syer
85d8151592 Ensure native headers get added to STOMP messages
Also changed some of the span creation logic in the messaging
interceptor. Seems to make sense. Need more tests.
2017-10-18 10:13:47 +01:00
Adrian Cole
8221068581 Encodes epoch seconds into first 32bits of a 128-bit trace ID (#724)
Amazon will throw out trace IDs that aren't associated with a recent
timestamp. This encodes the current epoch seconds into the first 32
of a 128-bit trace ID to support conversion to an Amazon Root ID.
2017-10-17 14:55:45 +08:00
Marcin Grzejszczak
86a6f7a6d7 Merge branch '1.2.x' 2017-10-16 09:29:41 +02:00
Marcin Grzejszczak
5ec3ca53bf Fixing recreation of a random; fixes #728 2017-10-16 09:28:32 +02:00
Anton Kislitsyn
8c7a20b07c Filter values having Zipkin compatible keys (#740)
Optimization linked with necessity to exclude unrequired values from the temporary carrier of header values
2017-10-16 08:14:35 +02:00
Marcin Grzejszczak
ab656f09b6 Merge branch '1.2.x' 2017-10-16 08:10:40 +02:00
Robert Hafner
d7cebccf0c Non-ASCII characters included in X-SPAN-NAME header. (#735) 2017-10-16 08:05:16 +02:00
Marcin Grzejszczak
29335363c5 Merge branch '1.2.x' 2017-10-10 14:10:51 +02:00
Marcin Grzejszczak
d2672f832a Added missing delegates to ThreadPoolTaskExecutor; fixes #722 2017-10-10 13:56:42 +02:00
Adrian Cole
522087ac25 Adds spring.sleuth.supports-join to disable span ID sharing (#725)
This adds the ability to opt out of span sharing between the client and
server side of an RPC. This is important when reporting to systems that
do not share span IDs, such as Google Stackdriver and Amazon X-Ray.
2017-10-06 14:18:02 +08:00
Adrian Cole
981fbd18f1 Encodes epoch seconds into first 32bits of a 128-bit trace ID (#724)
Amazon will throw out trace IDs that aren't associated with a recent
timestamp. This encodes the current epoch seconds into the first 32
of a 128-bit trace ID to support conversion to an Amazon Root ID.
2017-10-05 15:29:53 +02:00
Marcin Grzejszczak
2b7a254d96 Bumping versions to 1.2.6.BUILD-SNAPSHOT after release 2017-10-03 14:28:31 +02:00
Marcin Grzejszczak
a69610fc0d Going back to snapshots 2017-10-03 14:28:31 +02:00
Marcin Grzejszczak
2cb7663ec8 Update SNAPSHOT to 1.2.5.RELEASE 2017-10-03 14:26:25 +02:00
Marcin Grzejszczak
833bff3372 Fixed a typo 2017-10-03 16:18:51 +08:00
Marcin Grzejszczak
c7d35eea7f Introduced a "shared" field in Span (#698)
whenever:

- a span or trace id get generated when a request / message arrives
- child span is created

we set the field to false

whenever we find ids in the incoming request / message we set the field to true

fixes #696
2017-10-03 16:18:50 +08:00
Marcin Grzejszczak
4ac7efa28b Merge branch '1.2.x' 2017-09-30 09:13:01 +02:00