Skip to content

0.12.0.beta1

Pre-release
Pre-release
Compare
Choose a tag to compare
@delner delner released this 09 Feb 16:05
fbf203a

New integrations

GraphQL tracing support (#295, docs)

screen shot 2018-02-09 at 10 48 23 am

GraphQL is now supported (version 1.7.9+ is required). To activate the integration, use the following configuration:

Datadog.configure do |c|
  c.use :graphql,
        service_name: 'graphql',
        schemas: [YourSchema]
end

ActiveRecord object instantiation tracing (#311, #334, docs)

GraphQL tracing

ActiveRecord queries can spend significant time instantiating Ruby objects from database queries. This feature adds spans to track object instantiation as a part of a trace. Supported in both Rails and standalone applications that implement ActiveRecord.

Improvements

  • Rack applications now tag their traces with the http.request_id tag, which contains X-Request-Id header value. Great for associating traces with requests in HTTP logs. (#330, #335)

Read the full changeset.