From 70c93afe1861adfd00314c610757776d12c1b489 Mon Sep 17 00:00:00 2001 From: Colleen McGinnis Date: Mon, 25 Aug 2025 15:10:26 -0500 Subject: [PATCH] replace placeholder URLs --- docs/reference/config-http.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/config-http.md b/docs/reference/config-http.md index c1470be31..63952e403 100644 --- a/docs/reference/config-http.md +++ b/docs/reference/config-http.md @@ -121,9 +121,9 @@ For example, in order to ignore the URLs `/foo` and `/bar`, set the configuratio When an incoming HTTP request is detected, its request path will be tested against each element in this list. For example, adding `/home/index` to this list would match and remove instrumentation from the following URLs: ```txt -https://www.mycoolsite.com/home/index +https://www.example.com/home/index http://localhost/home/index -http://whatever.com/home/index?value1=123 +http://example.com/home/index?value1=123 ``` In other words, the matching always happens based on the request path—hosts and query strings are ignored.