From bf34a3b60cd182f0a59ea2e62c2b22dc120de12d Mon Sep 17 00:00:00 2001 From: Michi Hoffmann Date: Thu, 11 Jul 2024 01:18:11 +0200 Subject: [PATCH] Update requests.mdx (#1331) --- src/docs/sdk/performance/modules/requests.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/sdk/performance/modules/requests.mdx b/src/docs/sdk/performance/modules/requests.mdx index 99aa773f2a..aa41c2f464 100644 --- a/src/docs/sdk/performance/modules/requests.mdx +++ b/src/docs/sdk/performance/modules/requests.mdx @@ -9,7 +9,7 @@ The SDK should auto-instrument all outgoing HTTP requests, regardless of the lib | Attribute | Description | Notes | |:--|:--|:--| | `op` | Always `"http.client"` | Required | -| `description` | A string including the HTTP request method, and the full URL. e.g., `"GET https://example.com/data.json?filter=all"` | Required [^1] | +| `description` | A string including the HTTP request method, and the full URL. e.g., `"GET https://example.com/data.json"` | Required [^1] | | `data` | A key-value mapping of span attributes. (e.g., `{"http.query": "filter=all", "server.address": "prod-2.example.com"}`) | Required for full experience. See [Span Data](#span-data) for details | ### Span Data @@ -31,7 +31,7 @@ Should result in the following span, assuming the request was successful: ```json { - "description": "GET /data.json?user=1", + "description": "GET /data.json", "op": "http.client", "data": { "http.query": "user=1",