forked from Kong/kong-plugin-zipkin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
105 lines (63 loc) · 2.65 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
1.1.0 - 2020-04-30
New features:
- New `traceid_byte_count` config option (#74)
- Handling of W3C header, and new `header_type` config option (#75)
Fixes:
- (docs) Span annotations not correctly documented in README (#77)
1.0.0 - 2020-03-09
This version of the plugin has changed enough to be named 1.0.0.
One of the biggest differences from previous versions is that it
is independent from opentracing, while still being compatible with
Zipkin (#64). This allowed simplifying the plugin code and removing
3 external dependencies.
New features:
- Handling of B3 single header (#66)
Fixes:
- Stopped tagging non-erroneous spans with `error=false` (#63)
- Changed the structure of `localEndpoint` and `remoteEndpoint` (#63)
- Store annotation times in microseconds (#71)
- Prevent an error triggered when timing-related kong variables
were not present (#71)
0.2.1 - 2019-12-20
- Fixed incompatibilities in timestamps and annotations. Shortened annotations (#60)
0.2.0 - 2019-11-12
- Remove dependency on BasePlugin (#50, #51)
- Rename `component` tag to `lc` (#52)
- Restructure of Kong generated spans (#52)
- Change the name of spans for http traffic to `GET` (#57)
- Remove the no-longer supported `run_on` field from plugin config schema (#54)
0.1.3 - 2019-08-16
- Add support for stream subsystem (#30)
- Made sending credential optional with a new configuration
parameter `include_credential` (#37)
- Add possibility to override unknown service name with a new
configuration parameter `default_service_name` (#45)
0.1.2 - 2019-01-18
- Fix logging failure when DNS is not resolved
- Avoid sending redundant tags (#28)
- Move `run_on` field to top level plugin schema, not config (#34)
0.1.1 - 2018-10-26
- Add `run_on` field to the plugin's config
0.1.0 - 2018-10-18
- Start using the new DB & PDK modules (compatibility with Kong >= 0.15.0)
- New schema format
0.0.6 - 2018-10-18
- Fix failures when request is invalid or exits early
- Note that this will be the last release that supports Kong 0.14.
0.0.5 - 2018-09-16
- Fix possible bug when service name is missing
- Add kong.node.id tag
0.0.4 - 2018-08-09
- Fix operation when service and/or route are missing (#19)
- Fix cause of missing kong.credential field
- Support for deprecated Kong "api" entity via kong.api tag
- Upgrade to opentracing-lua 0.0.2
- Start of test suite
0.0.3 - 2018-07-06
- Always pass tag values as strings
- Fix errors when phases get skipped
- Pass service name as localEndpoint
0.0.2 - 2018-06-28
- Prevent timestamps from being encoded with scientific notation
0.0.1 - 2018-05-17
- Initial release