Skip to content

0.34.0

Compare
Choose a tag to compare
@delner delner released this 31 Mar 19:28
· 9292 commits to master since this release
abd4588

New in this release are the env, service, tags, and version settings, which can be used to describe and tag the application's traces and metrics automatically:

Datadog.configure do |c|
  c.env = 'production' # Can be set with DD_ENV
  c.service = 'billing-api' # Can be set with DD_SERVICE
  c.tags = { 'team' => 'accounts' } # Can be set with DD_TAGS
  c.version = '1.2.0.alpha' # Can be set with DD_VERSION
end

Please see the documentation for more details about this new feature.

Added

  • Datadog::Event for simple pub-sub messaging (#972)
  • Datadog::Workers for trace writing (#969, #973)
  • _dd.measured tag to some integrations for more statistics (#974)
  • env, service, version, tags configuration for auto-tagging (#977, #980, #982, #983, #985)
  • Multiplexed configuration for Ethon, Excon, Faraday, HTTP integrations (#882, #953) (@stormsilver)

Fixed

  • Runtime metrics configuration dropping with new writer (#967, #968) (@ericmustin)
  • Faraday "unexpected middleware" warnings on v0.x (#965, #971)
  • Presto configuration (#975)
  • Test suite issues (#981)

Read the full changeset and the release milestone.