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

enable trace sampling tests for Ruby #3177

Merged
merged 3 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion docs/scenarios/parametric.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,10 @@ There is three ways for running the NodeJS tests with a custom tracer:
There is two ways for running the Ruby tests with a custom tracer:

1. Create an file ruby-load-from-bundle-add in binaries/, the content will be installed by bundle add. Content example:
gem 'datadog', git: "https://github.com/Datadog/dd-trace-rb", branch: "master", require: 'datadog/auto_instrument'
gem 'ddtrace', git: "https://github.com/Datadog/dd-trace-rb", branch: "master", require: 'ddtrace/auto_instrument'
In addition, instead of `branch:`, `ref` can be used to reference a commit hash.
We'd recommend this if you're going to be iterating as it causes the build
script to always rebuild the ddtrace gem.
2. Clone the dd-trace-rb repo inside binaries

#### C++
Expand Down
6 changes: 3 additions & 3 deletions manifests/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -375,9 +375,9 @@ tests/:
Test_Trace_Sampling_Globs: v2.0.0
Test_Trace_Sampling_Globs_Feb2024_Revision: v2.0.0
Test_Trace_Sampling_Resource: v2.0.0
Test_Trace_Sampling_Tags: missing_feature
Test_Trace_Sampling_Tags_Feb2024_Revision: missing_feature
Test_Trace_Sampling_With_W3C: missing_feature
Test_Trace_Sampling_Tags: v2.4.0
Test_Trace_Sampling_Tags_Feb2024_Revision: v2.4.0
Test_Trace_Sampling_With_W3C: v2.4.0
test_tracer.py:
Test_TracerSCITagging: v1.21.0
test_tracer_flare.py:
Expand Down
Loading