buildmaster
c41bdadef4
Bumping versions to 3.1.2-SNAPSHOT after release
2022-02-17 17:29:32 +00:00
buildmaster
264399d125
Going back to snapshots
2022-02-17 17:29:31 +00:00
buildmaster
8daecd9f5b
Update SNAPSHOT to 3.1.1
2022-02-17 17:22:46 +00:00
buildmaster
3c1090a504
Bumping versions to 3.1.1-SNAPSHOT after release
2021-12-01 19:36:53 +00:00
buildmaster
d83dee52f1
Going back to snapshots
2021-12-01 19:36:52 +00:00
buildmaster
00193fc91b
Update SNAPSHOT to 3.1.0
2021-12-01 19:20:18 +00:00
buildmaster
8562948697
Going back to snapshots
2021-11-03 14:17:57 +00:00
buildmaster
5abcba02b6
Update SNAPSHOT to 3.1.0-RC1
2021-11-03 14:13:32 +00:00
buildmaster
aafde81e8d
Going back to snapshots
2021-11-03 12:05:22 +00:00
buildmaster
960045f3d8
Update SNAPSHOT to 3.1.0-RC1
2021-11-03 12:01:05 +00:00
buildmaster
11ef7e028a
Going back to snapshots
2021-10-20 03:03:18 +00:00
buildmaster
17e68ba7c6
Update SNAPSHOT to 3.1.0-M3
2021-10-20 02:59:04 +00:00
buildmaster
3855298689
Going back to snapshots
2021-10-01 19:38:52 +00:00
buildmaster
160524d943
Update SNAPSHOT to 3.1.0-M2
2021-10-01 19:34:24 +00:00
buildmaster
d5dad5d1e6
Going back to snapshots
2021-07-30 18:51:11 +00:00
buildmaster
848a1bbcdc
Update SNAPSHOT to 3.1.0-M1
2021-07-30 18:47:07 +00:00
Marcin Grzejszczak
911fb4838a
3.1.0 initial commit
2021-04-20 08:53:38 +02:00
buildmaster
d2c29938b8
Bumping versions to 3.0.3-SNAPSHOT after release
2021-03-17 22:12:44 +00:00
buildmaster
dfc5674cea
Going back to snapshots
2021-03-17 22:12:44 +00:00
buildmaster
551094af4a
Update SNAPSHOT to 3.0.2
2021-03-17 22:09:09 +00:00
buildmaster
2dc9556cc3
Bumping versions to 3.0.2-SNAPSHOT after release
2021-01-27 21:15:42 +00:00
buildmaster
5394ecb9ec
Going back to snapshots
2021-01-27 21:15:41 +00:00
buildmaster
49f5528e69
Update SNAPSHOT to 3.0.1
2021-01-27 21:12:10 +00:00
buildmaster
ca2e15fc76
Bumping versions
2020-12-22 18:28:05 +00:00
buildmaster
ea66740e2e
Bumping versions
2020-12-22 05:29:47 +00:00
buildmaster
7ed5683386
Bumping versions to 3.0.1-SNAPSHOT after release
2020-12-21 20:12:10 +00:00
buildmaster
749c1cc9e2
Going back to snapshots
2020-12-21 20:12:10 +00:00
buildmaster
dbe4853e36
Update SNAPSHOT to 3.0.0
2020-12-21 20:07:38 +00:00
buildmaster
be35aaec21
Going back to snapshots
2020-12-11 22:29:42 +00:00
buildmaster
5630b3fa61
Update SNAPSHOT to 3.0.0-RC1
2020-12-11 22:27:43 +00:00
buildmaster
f3b384a8aa
Going back to snapshots
2020-12-01 23:11:38 +00:00
buildmaster
df54a7b772
Update SNAPSHOT to 3.0.0-M6
2020-12-01 23:09:32 +00:00
buildmaster
6a1495db5c
Going back to snapshots
2020-11-17 21:06:46 +00:00
buildmaster
4b5bd34bbc
Update SNAPSHOT to 3.0.0-M5
2020-11-17 21:04:48 +00:00
buildmaster
f6608cd27f
Going back to snapshots
2020-10-03 14:19:22 +00:00
buildmaster
bc5668b96d
Update SNAPSHOT to 3.0.0-M4
2020-10-03 14:18:00 +00:00
buildmaster
dca561e4e8
Going back to snapshots
2020-07-23 18:49:08 +00:00
buildmaster
f352801918
Update SNAPSHOT to 3.0.0-M3
2020-07-23 18:47:48 +00:00
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
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
fe2591b22a
latest brave
2020-01-29 14:06:10 +08:00