Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update profiling namespacing for ddtrace 1.0 #12912

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/en/tracing/profiler/enabling/ruby.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ To begin profiling applications:
2. Add the `ddtrace` and `google-protobuf` gems to your `Gemfile` or `gems.rb` file:

```ruby
gem 'ddtrace', '>= 0.53.0'
gem 'ddtrace', '~> 1'
gem 'google-protobuf', '~> 3.0'
```

Expand Down Expand Up @@ -89,7 +89,7 @@ end
If starting the application via `ddtracerb exec` is not an option (eg. when using the Phusion Passenger web server), you can alternatively start the profiler by adding the following to your application entry point such as `config.ru` for a web application:

```ruby
require 'ddtrace/profiling/preload'
require 'datadog/profiling/preload'
```


Expand Down