buildmaster
93ea0d6b00
Going back to snapshots
2020-05-29 19:03:35 +00:00
buildmaster
640faa7c30
Update SNAPSHOT to 3.0.0-M2
2020-05-29 19:02:42 +00:00
Adrian Cole
8ae5e13d31
Merge branch '2.2.x'
2020-05-16 15:15:37 +08:00
Adrian Cole
b1d39ce291
Updates to Brave 5.12 and introduces SpanHandler ( #1632 )
...
`SpanHandler` is the base type for the now deprecated `FinishedSpanHandler`.
Notable, it can not just handle things at the end of a recording, but also the
beginning.
For example, this permits set-once baggage without the HTTP abstraction:
```java
static final BaggageField EPOCH_SECONDS = BaggageField.create("epoch_seconds");
static final class RootOnlyBaggage extends SpanHandler {
@Override
public boolean begin(TraceContext context, MutableSpan span, @Nullable TraceContext parent) {
if (EPOCH_SECONDS.getValue(context) == null) { // only set at the first span
long epochSeconds = System.currentTimeMillis() / 1000;
EPOCH_SECONDS.updateValue(context, String.valueOf(epochSeconds));
}
return true;
}
@Override public boolean end(TraceContext context, MutableSpan span, Cause cause) {
Tags.BAGGAGE_FIELD.tag(EPOCH_SECONDS, context, span);
return true;
}
}
```
As the parent is available, it can also facilitate advanced tasks like counting
children, or summarizing entire local roots.
See https://github.com/openzipkin/brave/tree/master/brave/src/test/java/brave/features/handler
and https://github.com/openzipkin/brave/blob/master/brave/src/main/java/brave/handler/SpanHandler.java for more
2020-05-16 14:01:38 +08:00
buildmaster
d41d75a3eb
Bumping versions
2020-04-17 14:53:39 +00:00
buildmaster
08a575141d
Going back to snapshots
2020-04-09 22:48:15 +00:00
buildmaster
66b540f0b9
Update SNAPSHOT to 3.0.0.M1
2020-04-09 22:47:21 +00:00
Adrian Cole
b92db4ce51
Stops propagating Sleuth 1.x spring-messaging headers
...
To reduce confusion and overhead, the following custom spring-messaging headers added in Sleuth 1.0 are no longer sent, and a log warning is issued once if they are by outside code.
* spanId
* spanSampled
* spanParentSpanId
* spanTraceId
* spanFlags
Sending the above headers actually increases the headers by up to 10 because they are duplicated in the "native" part of messages. This overhead is extreme especially if messages never leave the process.
The solution is to only send [b3 single format](https://github.com/openzipkin/b3-propagation#single-header ), which has been in sleuth since 2.0 and is compatible with JMS. The B3 single format is always parsed and takes precedence, even if multiple headers are sent, so this is a safe change.
Note: Unlike RPC, messaging spans never join with their parent. Better performance is achieved by not propagating the producer's parentId downstream.
Note: Deprecated spring-messaging headers such "spanTraceId" as are still read in Sleuth 3.x. However, they will not be at some point in the future. Please pay attention to the log messages and update your code if you are accidentally using them.
2020-04-07 10:58:49 +08:00
buildmaster
2674fba171
Bumping versions to 2.2.3.BUILD-SNAPSHOT after release
2020-03-04 16:59:42 +00:00
buildmaster
5dd714da5c
Going back to snapshots
2020-03-04 16:59:42 +00:00
buildmaster
151218b30a
Update SNAPSHOT to 2.2.2.RELEASE
2020-03-04 16:57:41 +00:00
Marcin Grzejszczak
3813cf9dd4
Removes modules in maintenance more.
...
Zuul, ribbon and hystrix
2020-02-12 11:03:04 +01:00
Adrian Cole
8a4002d288
Cleanups of build including upgrade of Brave ( #1530 )
...
In efforts to dig deep into benchmarks, I noticed we were a bit out of
date on Brave. Then, noticed some other artifacts could be bumped
safely. Finally, a find/replace on http/https was over zealous and
tripped up XML.
One change to test expectations and Brave is explained here:
https://github.com/openzipkin/brave/blob/master/instrumentation/RATIONALE.md#calling-spanfinish-while-the-context-is-in-scope
2020-01-22 19:31:50 +08:00
Adrian Cole
8866b84906
Cleanups of build including upgrade of Brave ( #1530 )
...
In efforts to dig deep into benchmarks, I noticed we were a bit out of
date on Brave. Then, noticed some other artifacts could be bumped
safely. Finally, a find/replace on http/https was over zealous and
tripped up XML.
One change to test expectations and Brave is explained here:
https://github.com/openzipkin/brave/blob/master/instrumentation/RATIONALE.md#calling-spanfinish-while-the-context-is-in-scope
2020-01-21 09:44:08 +01:00
buildmaster
1c4a3da588
Bumping versions to 2.2.2.BUILD-SNAPSHOT after release
2019-12-20 13:48:43 +00:00
buildmaster
ac6dff3407
Going back to snapshots
2019-12-20 13:48:43 +00:00
buildmaster
c71d6ff0e2
Update SNAPSHOT to 2.2.1.RELEASE
2019-12-20 13:46:45 +00:00
buildmaster
9ca94951ec
Bumping versions to 2.2.1.BUILD-SNAPSHOT after release
2019-11-26 10:35:52 +00:00
buildmaster
830f300ca9
Going back to snapshots
2019-11-26 10:35:52 +00:00
buildmaster
312f87cd23
Update SNAPSHOT to 2.2.0.RELEASE
2019-11-26 10:34:27 +00:00
buildmaster
99ebccf97c
Going back to snapshots
2019-11-10 00:19:36 +00:00
buildmaster
10e6f9a705
Update SNAPSHOT to 2.2.0.RC2
2019-11-10 00:18:38 +00:00
buildmaster
b4b597872f
Going back to snapshots
2019-10-24 21:05:59 +00:00
buildmaster
d972a87338
Update SNAPSHOT to 2.2.0.RC1
2019-10-24 21:05:02 +00:00
buildmaster
9361cf2017
Going back to snapshots
2019-10-03 20:06:35 +00:00
buildmaster
365a1c60f0
Update SNAPSHOT to 2.2.0.M3
2019-10-03 20:05:37 +00:00
buildmaster
40a5333e56
Going back to snapshots
2019-08-14 15:47:10 +00:00
buildmaster
4884f0f78c
Update SNAPSHOT to 2.2.0.M2
2019-08-14 15:45:31 +00:00
buildmaster
e9ee0ba686
Going back to snapshots
2019-07-03 20:04:36 +00:00
buildmaster
1d0422c12e
Update SNAPSHOT to 2.2.0.M1
2019-07-03 20:03:26 +00:00
Marcin Grzejszczak
78d271d195
http to https
2019-06-06 14:35:28 +02:00
Spring Operator
8e51934e9e
URL Cleanup
...
This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener).
# Fixed URLs
## Fixed Success
These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended.
* [ ] http://www.apache.org/licenses/ with 1 occurrences migrated to:
https://www.apache.org/licenses/ ([https](https://www.apache.org/licenses/ ) result 200).
* [ ] http://www.apache.org/licenses/LICENSE-2.0 with 338 occurrences migrated to:
https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0 ) result 200).
2019-03-21 13:16:37 -05:00
Spring Operator
be252493c0
URL Cleanup ( #1264 )
...
This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener).
# Fixed URLs
## Fixed But Review Recommended
These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended.
* http://www.puppycrawl.com/dtds/suppressions_1_1.dtd (404) with 1 occurrences migrated to:
https://www.puppycrawl.com/dtds/suppressions_1_1.dtd ([https](https://www.puppycrawl.com/dtds/suppressions_1_1.dtd ) result 404).
## Fixed Success
These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended.
* http://maven.apache.org/xsd/maven-4.0.0.xsd with 16 occurrences migrated to:
https://maven.apache.org/xsd/maven-4.0.0.xsd ([https](https://maven.apache.org/xsd/maven-4.0.0.xsd ) result 200).
* http://www.springframework.org/schema/beans/spring-beans.xsd with 1 occurrences migrated to:
https://www.springframework.org/schema/beans/spring-beans.xsd ([https](https://www.springframework.org/schema/beans/spring-beans.xsd ) result 200).
* http://www.springframework.org/schema/integration/spring-integration.xsd with 1 occurrences migrated to:
https://www.springframework.org/schema/integration/spring-integration.xsd ([https](https://www.springframework.org/schema/integration/spring-integration.xsd ) result 200).
* http://www.springframework.org/schema/task/spring-task.xsd with 1 occurrences migrated to:
https://www.springframework.org/schema/task/spring-task.xsd ([https](https://www.springframework.org/schema/task/spring-task.xsd ) result 200).
# Ignored
These URLs were intentionally ignored.
* http://maven.apache.org/POM/4.0.0 with 32 occurrences
* http://www.springframework.org/schema/beans with 2 occurrences
* http://www.springframework.org/schema/integration with 2 occurrences
* http://www.springframework.org/schema/task with 2 occurrences
* http://www.w3.org/2001/XMLSchema-instance with 17 occurrences
2019-03-21 12:59:41 +01:00
Spring Operator
4c181fb934
URL Cleanup ( #1230 )
...
This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener).
# Fixed URLs
## Fixed Success
These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended.
* http://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch migrated to:
https://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch ([https](https://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch ) result 200).
* http://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin migrated to:
https://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin ([https](https://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin ) result 200).
* http://www.apache.org/licenses/LICENSE-2.0 migrated to:
https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0 ) result 200).
# Ignored
These URLs were intentionally ignored.
* http://maven.apache.org/POM/4.0.0
* http://maven.apache.org/xsd/maven-4.0.0.xsd
* http://www.w3.org/2001/XMLSchema-instance
2019-03-11 23:22:17 -04:00
Marcin Grzejszczak
3879e171e6
Hoxton
2019-03-08 16:50:45 +01:00
buildmaster
3b4dc7b17a
Bumping versions to 2.1.2.BUILD-SNAPSHOT after release
2019-03-05 20:06:52 +00:00
buildmaster
ce39889121
Going back to snapshots
2019-03-05 20:06:51 +00:00
buildmaster
cf138b8dcb
Update SNAPSHOT to 2.1.1.RELEASE
2019-03-05 20:00:58 +00:00
Marcin Grzejszczak
f044c07f67
NPE guard for null response; fixes gh-1224
2019-02-28 15:28:42 +01:00
Marcin Grzejszczak
b4174ffa82
Trying to make tests less brittle
2019-02-27 16:02:25 +01:00
Marcin Grzejszczak
2f7cf78614
Applied checkstyle
2019-02-07 16:41:59 +01:00
buildmaster
4b3eae2453
Bumping versions to 2.1.1.BUILD-SNAPSHOT after release
2019-01-22 18:53:51 +00:00
buildmaster
dd96605d34
Going back to snapshots
2019-01-22 18:53:51 +00:00
buildmaster
4829876aec
Update SNAPSHOT to 2.1.0.RELEASE
2019-01-22 18:51:05 +00:00
buildmaster
3dfc4b0be2
Going back to snapshots
2018-12-20 21:28:46 +00:00
buildmaster
d8d469a20d
Update SNAPSHOT to 2.1.0.RC3
2018-12-20 21:27:48 +00:00
buildmaster
4805480ce5
Going back to snapshots
2018-12-11 22:20:00 +00:00
buildmaster
65c0838cfc
Update SNAPSHOT to 2.1.0.RC2
2018-12-11 22:18:47 +00:00
buildmaster
00922f390c
Going back to snapshots
2018-12-11 18:48:50 +00:00
buildmaster
1a901ac432
Update SNAPSHOT to 2.1.0.RC1
2018-12-11 18:47:57 +00:00