dogstatsd-ruby 4.0.0 → 5.5.0

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.
metadata CHANGED
@@ -1,16 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dogstatsd-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 5.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rein Henrichs
8
- autorequire:
8
+ - Karim Bogtob
9
+ autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2018-08-20 00:00:00.000000000 Z
12
+ date: 2022-06-01 00:00:00.000000000 Z
12
13
  dependencies: []
13
- description: A Ruby DogStastd client
14
+ description: A Ruby DogStatsd client
14
15
  email: code@datadoghq.com
15
16
  executables: []
16
17
  extensions: []
@@ -21,11 +22,36 @@ files:
21
22
  - LICENSE.txt
22
23
  - README.md
23
24
  - lib/datadog/statsd.rb
24
- homepage: http://github.com/datadog/dogstatsd-ruby
25
+ - lib/datadog/statsd/connection.rb
26
+ - lib/datadog/statsd/connection_cfg.rb
27
+ - lib/datadog/statsd/forwarder.rb
28
+ - lib/datadog/statsd/message_buffer.rb
29
+ - lib/datadog/statsd/sender.rb
30
+ - lib/datadog/statsd/serialization.rb
31
+ - lib/datadog/statsd/serialization/event_serializer.rb
32
+ - lib/datadog/statsd/serialization/serializer.rb
33
+ - lib/datadog/statsd/serialization/service_check_serializer.rb
34
+ - lib/datadog/statsd/serialization/stat_serializer.rb
35
+ - lib/datadog/statsd/serialization/tag_serializer.rb
36
+ - lib/datadog/statsd/single_thread_sender.rb
37
+ - lib/datadog/statsd/telemetry.rb
38
+ - lib/datadog/statsd/timer.rb
39
+ - lib/datadog/statsd/udp_connection.rb
40
+ - lib/datadog/statsd/uds_connection.rb
41
+ - lib/datadog/statsd/version.rb
42
+ homepage: https://github.com/DataDog/dogstatsd-ruby
25
43
  licenses:
26
44
  - MIT
27
- metadata: {}
28
- post_install_message:
45
+ metadata:
46
+ bug_tracker_uri: https://github.com/DataDog/dogstatsd-ruby/issues
47
+ changelog_uri: https://github.com/DataDog/dogstatsd-ruby/blob/v5.5.0/CHANGELOG.md
48
+ documentation_uri: https://www.rubydoc.info/gems/dogstatsd-ruby/5.5.0
49
+ source_code_uri: https://github.com/DataDog/dogstatsd-ruby/tree/v5.5.0
50
+ post_install_message: |2+
51
+
52
+ If you are upgrading from v4.x of the dogstatsd-ruby library, note the major change to the threading model:
53
+ https://github.com/DataDog/dogstatsd-ruby#migrating-from-v4x-to-v5x
54
+
29
55
  rdoc_options: []
30
56
  require_paths:
31
57
  - lib
@@ -33,16 +59,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
33
59
  requirements:
34
60
  - - ">="
35
61
  - !ruby/object:Gem::Version
36
- version: 2.0.0
62
+ version: 2.1.0
37
63
  required_rubygems_version: !ruby/object:Gem::Requirement
38
64
  requirements:
39
65
  - - ">="
40
66
  - !ruby/object:Gem::Version
41
67
  version: '0'
42
68
  requirements: []
43
- rubyforge_project:
44
- rubygems_version: 2.7.7
45
- signing_key:
69
+ rubyforge_project:
70
+ rubygems_version: 2.7.10
71
+ signing_key:
46
72
  specification_version: 4
47
73
  summary: A Ruby DogStatsd client
48
74
  test_files: []
75
+ ...