DataDog/dd-trace-rb

Name: dd-trace-rb

Owner: Datadog, Inc.

Description: Datadog Tracing Ruby Client

Created: 2016-08-24 20:30:56.0

Updated: 2018-01-18 00:56:53.0

Pushed: 2018-01-18 19:42:55.0

Homepage:

Size: 1427

Language: Ruby

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

dd-trace-rb

CircleCI

Documentation

You can find the latest documentation on rubydoc.info

Getting started
Install

Install the Ruby client with the gem command:

gem install ddtrace

If you're using Bundler, just update your Gemfile as follows:

source 'https://rubygems.org'

# tracing gem
gem 'ddtrace'

To use a development/preview version, use:

gem 'ddtrace', :github => 'DataDog/dd-trace-rb', :branch => 'me/my-feature-branch'
Quickstart (manual instrumentation)

If you aren't using a supported framework instrumentation, you may want to to manually instrument your code. Adding tracing to your code is very simple. As an example, let?s imagine we have a web server and we want to trace requests to the home page:

require 'ddtrace'
require 'sinatra'
require 'active_record'

# a generic tracer that you can use across your application
tracer = Datadog.tracer

get '/' do
  tracer.trace('web.request') do |span|
    # set some span metadata
    span.service = 'my-web-site'
    span.resource = '/'
    span.set_tag('http.method', request.request_method)

    # trace the activerecord call
    tracer.trace('posts.fetch') do
      @posts = Posts.order(created_at: :desc).limit(10)
    end

    # trace the template rendering
    tracer.trace('template.render') do
      erb :index
    end
  end
end
Quickstart (integration)

Instead of doing the above manually, whenever an integration is available, you can activate it. The example above would become:

require 'ddtrace'
require 'sinatra'
require 'active_record'

Datadog.configure do |c|
  c.use :sinatra
  c.use :active_record
end

# now write your code naturally, it's traced automatically
get '/' do
  @posts = Posts.order(created_at: :desc).limit(10)
  erb :index
end

This will automatically trace any app inherited from Sinatra::Application. To trace apps inherited from Sinatra::Base, you should manually register the tracer inside your class.

require "ddtrace"
require "ddtrace/contrib/sinatra/tracer"

class App < Sinatra::Base
  register Datadog::Contrib::Sinatra::Tracer
end

To configure the Datadog Tracer, you can define the configure block as follows:

Datadog.configure do |c|
  c.tracer enabled: false, hostname: 'trace-agent.local'
  # [...]
end

For a list of available options, check the Tracer documentation.

To know if a given framework or lib is supported by our client, please consult our integrations list.

Development
Testing

Configure your environment through:

$ bundle install
$ appraisal install

You can launch tests using the following Rake commands:

$ rake test:main                                      # tracer tests
$ appraisal rails<version>-<database> rake test:rails # tests Rails matrix
$ appraisal contrib rake test:redis                   # tests Redis integration
...

Run rake --tasks for the list of available Rake tasks.

Available appraisals are:

The test suite requires many backing services (PostgreSQL, MySQL, Redis, …) and we're using docker and docker-compose to start these services in the CI. To launch properly the test matrix, please install docker and docker-compose using the instructions provided by your platform. Then launch them through:

$ docker-compose up -d

We also enforce the Ruby community-driven style guide through Rubocop. Simply launch:

$ rake rubocop

This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.