dogstatsd-ruby 4.1.0 → 4.2.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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/datadog/statsd.rb +6 -3
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fdab85fe0b81950fd3e672109edd29b4e9d9a4362e567ed9e9a14e2f95f46ec8
4
- data.tar.gz: 4b6040d520cc243cb045a970f7011d3cd878e2a6e8a9f7be2a496d1994c07214
3
+ metadata.gz: c8e8d0982550cf2f3e3dddee6eee8dcf88534ccf4e26ef47731c2866b85e81f2
4
+ data.tar.gz: 8f9d33a02a6b86e343144c98511e243a65bdaeb2f881ae00cd7842528158f3f6
5
5
  SHA512:
6
- metadata.gz: 1d73c1e3e5c9d7d27fc965f79137dee176ea7bc6d7a520e8a4658329bfbd780b9aadd71d636e4f9652d675f888cce1c24902ebb79c3af7aebb39b4b730bb0c7b
7
- data.tar.gz: 1f5ae46a3955844f74748e3fdacac487685efbfa2f270c178e9a2e99791cf00bce9e2200809276ca263f9d2dda1b606a593a4e33a44bb3c2cbfef2f33341f330
6
+ metadata.gz: 68e6cc9c4bbbbffa546eaefd643785ca945ae00dfd03d84d5984262d0061f25b059c325063220fd15bdd354d6ec721ba7d50ad7b7c2310d2b64c24b49314ba36
7
+ data.tar.gz: c070c0fd60a513b3c89a8eff5c4c755e38b5d646529840adca886a52651831f7bef1bdf437723329237f1faf4066960bee32ae5e5b6b9f4ddeb1eb69bfb87afe
@@ -34,8 +34,8 @@ module Datadog
34
34
  attr_reader :socket_path
35
35
 
36
36
  def initialize(host, port, socket_path, logger)
37
- @host = host || DEFAULT_HOST
38
- @port = port || DEFAULT_PORT
37
+ @host = host || ENV.fetch('DD_AGENT_HOST', nil) || DEFAULT_HOST
38
+ @port = port || ENV.fetch('DD_DOGSTATSD_PORT', nil) || DEFAULT_PORT
39
39
  @socket_path = socket_path
40
40
  @logger = logger
41
41
  end
@@ -181,7 +181,7 @@ module Datadog
181
181
  DISTRIBUTION_TYPE = 'd'.freeze
182
182
  TIMING_TYPE = 'ms'.freeze
183
183
  SET_TYPE = 's'.freeze
184
- VERSION = "4.1.0".freeze
184
+ VERSION = "4.2.0".freeze
185
185
 
186
186
  # A namespace to prepend to all statsd calls. Defaults to no namespace.
187
187
  attr_reader :namespace
@@ -223,6 +223,9 @@ module Datadog
223
223
  raise ArgumentError, 'tags must be a Array<String>' unless tags.nil? or tags.is_a? Array
224
224
  @tags = (tags || []).compact.map! {|tag| escape_tag_content(tag)}
225
225
 
226
+ # append the entity id to tags if DD_ENTITY_ID env var is not nil
227
+ @tags << 'dd.internal.entity_id:' + escape_tag_content(ENV.fetch('DD_ENTITY_ID', nil)) unless ENV.fetch('DD_ENTITY_ID', nil).nil?
228
+
226
229
  @batch = Batch.new @connection, max_buffer_bytes
227
230
  end
228
231
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dogstatsd-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.0
4
+ version: 4.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rein Henrichs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-08 00:00:00.000000000 Z
11
+ date: 2019-04-04 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A Ruby DogStastd client
14
14
  email: code@datadoghq.com