opentelemetry-exporter-zipkin 0.23.2 → 0.24.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6bbbc021c0aa490e30bf2ce1d90ff90c204a2707139f307c762d7d124c0cebb3
4
- data.tar.gz: 9d6298dc17cf19c647c78e34b37371c5796ebec516c4366ce0931f3fc5f932ac
3
+ metadata.gz: 392d40e1d6b01d5445e7e3e640ffb2b26781ec43186fbc188f07b1dadb097dbe
4
+ data.tar.gz: 85db358bc4e5960ebb7545aa015a837d8fb389b486b8a85bf6f2a37c8bc513bb
5
5
  SHA512:
6
- metadata.gz: 69ed363666abfdd099416b259d86ebbd2f2b63785b85d916aaec9a5830b4823ac484982edfd82e81d76d7a7aaa526aede286f53cd2c7a3aa4d494cf62f5c8e5c
7
- data.tar.gz: 894de881a94a1a7b3552d100c30438cbfdeccc79058e3cc76e96a4ad9b09976f739877cddfd0e0e3d461864dd33a35e5ee96cdb48756d6b4b90d50c586e2af0e
6
+ metadata.gz: 929186ed257746fa353e70f91049b1f3a2454589607f71aea7d828a40a7df822ca049e09065d139e4986d7dc315a5b46d3618048cab307021c789c87cf3ec2fb
7
+ data.tar.gz: cd685ae6170bd1fdaf7bda9669de9100870636717a390fe35dc8e00410111213113d7d3d897546ab370633250cd5eee9355d72486aebe0207a664a9d3bc62b00
data/CHANGELOG.md CHANGED
@@ -1,57 +1,65 @@
1
1
  # Release History: opentelemetry-exporter-zipkin
2
2
 
3
+ ### v0.24.1 / 2025-10-21
4
+
5
+ * FIXED: Change zipkin annotations timestamp from string to int
6
+
7
+ ### v0.24.0 / 2025-02-25
8
+
9
+ - ADDED: Support 3.1 Min Version
10
+
3
11
  ### v0.23.2 / 2024-12-04
4
12
 
5
- * FIXED: Remove WRITE_TIMEOUT_SUPPORTED
13
+ - FIXED: Remove WRITE_TIMEOUT_SUPPORTED
6
14
 
7
15
  ### v0.23.1 / 2024-02-06
8
16
 
9
- * FIXED: Require csv for ruby-3.4 compatibility
10
- * DOCS: Add missing period
17
+ - FIXED: Require csv for ruby-3.4 compatibility
18
+ - DOCS: Add missing period
11
19
 
12
20
  ### v0.23.0 / 2023-06-08
13
21
 
14
- * BREAKING CHANGE: Remove support for EoL Ruby 2.7
22
+ - BREAKING CHANGE: Remove support for EoL Ruby 2.7
15
23
 
16
- * ADDED: Remove support for EoL Ruby 2.7
24
+ - ADDED: Remove support for EoL Ruby 2.7
17
25
 
18
26
  ### v0.22.0 / 2023-05-30
19
27
 
20
- * ADDED: Custom Metrics Reporter Support for Zipkin
28
+ - ADDED: Custom Metrics Reporter Support for Zipkin
21
29
 
22
30
  ### v0.21.0 / 2022-09-14
23
31
 
24
- * ADDED: Add dropped events/attributes/links counts to zipkin + jaeger exporters
25
- * ADDED: Support InstrumentationScope, and update OTLP proto to 0.18.0
32
+ - ADDED: Add dropped events/attributes/links counts to zipkin + jaeger exporters
33
+ - ADDED: Support InstrumentationScope, and update OTLP proto to 0.18.0
26
34
 
27
35
  ### v0.20.0 / 2022-06-09
28
36
 
29
- * (No significant changes)
37
+ - (No significant changes)
30
38
 
31
39
  ### v0.19.3 / 2021-12-01
32
40
 
33
- * FIXED: Change net attribute names to match the semantic conventions spec for http
41
+ - FIXED: Change net attribute names to match the semantic conventions spec for http
34
42
 
35
43
  ### v0.19.2 / 2021-09-29
36
44
 
37
- * (No significant changes)
45
+ - (No significant changes)
38
46
 
39
47
  ### v0.19.1 / 2021-08-12
40
48
 
41
- * DOCS: Update docs to rely more on environment variable configuration
49
+ - DOCS: Update docs to rely more on environment variable configuration
42
50
 
43
51
  ### v0.19.0 / 2021-06-23
44
52
 
45
- * BREAKING CHANGE: Total order constraint on span.status=
53
+ - BREAKING CHANGE: Total order constraint on span.status=
46
54
 
47
- * FIXED: Total order constraint on span.status=
55
+ - FIXED: Total order constraint on span.status=
48
56
 
49
57
  ### v0.18.0 / 2021-05-21
50
58
 
51
- * BREAKING CHANGE: Replace Time.now with Process.clock_gettime
59
+ - BREAKING CHANGE: Replace Time.now with Process.clock_gettime
52
60
 
53
- * FIXED: Replace Time.now with Process.clock_gettime
61
+ - FIXED: Replace Time.now with Process.clock_gettime
54
62
 
55
63
  ### v0.17.0 / 2021-04-22
56
64
 
57
- * Initial release.
65
+ - Initial release.
@@ -117,12 +117,12 @@ module OpenTelemetry
117
117
  events = span_data.events.map do |event|
118
118
  if event.attributes.keys.length.zero?
119
119
  {
120
- timestamp: (event.timestamp / 1_000).to_s,
120
+ timestamp: event.timestamp / 1_000,
121
121
  value: event.name
122
122
  }
123
123
  else
124
124
  {
125
- timestamp: (event.timestamp / 1_000).to_s,
125
+ timestamp: event.timestamp / 1_000,
126
126
  value: { event.name => event.attributes.transform_values(&:to_s) }.to_json
127
127
  }
128
128
  end
@@ -8,7 +8,7 @@ module OpenTelemetry
8
8
  module Exporter
9
9
  module Zipkin
10
10
  ## Current OpenTelemetry Zipkin exporter version
11
- VERSION = '0.23.2'
11
+ VERSION = '0.24.1'
12
12
  end
13
13
  end
14
14
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opentelemetry-exporter-zipkin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.2
4
+ version: 0.24.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenTelemetry Authors
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-05 00:00:00.000000000 Z
11
+ date: 2025-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: csv
@@ -184,14 +184,14 @@ dependencies:
184
184
  requirements:
185
185
  - - "~>"
186
186
  - !ruby/object:Gem::Version
187
- version: 3.7.6
187
+ version: '3.24'
188
188
  type: :development
189
189
  prerelease: false
190
190
  version_requirements: !ruby/object:Gem::Requirement
191
191
  requirements:
192
192
  - - "~>"
193
193
  - !ruby/object:Gem::Version
194
- version: 3.7.6
194
+ version: '3.24'
195
195
  - !ruby/object:Gem::Dependency
196
196
  name: yard
197
197
  requirement: !ruby/object:Gem::Requirement
@@ -240,11 +240,11 @@ homepage: https://github.com/open-telemetry/opentelemetry-ruby
240
240
  licenses:
241
241
  - Apache-2.0
242
242
  metadata:
243
- changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-exporter-zipkin/v0.23.2/file.CHANGELOG.html
243
+ changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-exporter-zipkin/v0.24.1/file.CHANGELOG.html
244
244
  source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby/tree/main/exporter/zipkin
245
245
  bug_tracker_uri: https://github.com/open-telemetry/opentelemetry-ruby/issues
246
- documentation_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-exporter-zipkin/v0.23.2
247
- post_install_message:
246
+ documentation_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-exporter-zipkin/v0.24.1
247
+ post_install_message:
248
248
  rdoc_options: []
249
249
  require_paths:
250
250
  - lib
@@ -252,15 +252,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
252
252
  requirements:
253
253
  - - ">="
254
254
  - !ruby/object:Gem::Version
255
- version: '3.0'
255
+ version: '3.1'
256
256
  required_rubygems_version: !ruby/object:Gem::Requirement
257
257
  requirements:
258
258
  - - ">="
259
259
  - !ruby/object:Gem::Version
260
260
  version: '0'
261
261
  requirements: []
262
- rubygems_version: 3.2.33
263
- signing_key:
262
+ rubygems_version: 3.3.27
263
+ signing_key:
264
264
  specification_version: 4
265
265
  summary: Zipkin trace exporter for the OpenTelemetry framework
266
266
  test_files: []