From e2f791eb6118f35ffc49d39f33f3d6d673cb6f15 Mon Sep 17 00:00:00 2001 From: Bradley Schaefer Date: Mon, 30 Dec 2024 12:38:27 -0500 Subject: [PATCH] Combine duplicate option table rows The documentation for instrumenting rake had two rows for the same option key. This consolidates those entries into a single row. --- docs/GettingStarted.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/GettingStarted.md b/docs/GettingStarted.md index 894903047bd..9262b29bcb4 100644 --- a/docs/GettingStarted.md +++ b/docs/GettingStarted.md @@ -1547,11 +1547,10 @@ Rake::Task['my_task'].invoke | Key | Env Var| Type | Description | Default | | -------------- | - | ------- | -------------------------------------------------------------------------------------------------------- | -------- | -| `enabled` | | `Bool` | Defines whether Rake tasks should be traced. Useful for temporarily disabling tracing. `true` or `false` | `true` | +| `enabled` | `DD_TRACE_RAKE_ENABLED` | `Bool` | Defines whether Rake tasks should be traced. Useful for temporarily disabling tracing. `true` or `false` | `true` | | `quantize` | | `Hash` | Hash containing options for quantization of task arguments. See below for more details and examples. | `{}` | | `service_name` | | `String` | Service name used for `rake` instrumentation | `'rake'` | | `tasks` | | `Array` | Names of the Rake tasks to instrument | `[]` | -| `enabled` | `DD_TRACE_RAKE_ENABLED` | `Bool` | Whether the integration should create spans. | `true` | **Configuring task quantization behavior**