Skip to content

Commit f6ed512

Browse files
committed
more full url clarification
1 parent 7eebc0e commit f6ed512

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

docs/platforms/python/integrations/wsgi/index__v3.x.mdx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -99,17 +99,17 @@ Each request has a separate scope. Changes to the scope within a view, for examp
9999

100100
A set of predefined span attributes will be attached to WSGI transactions by default. These can also be used for sampling since they will also be accessible via the `sampling_context` dictionary in the [`traces_sampler`](/platforms/python/configuration/options/#traces_sampler).
101101

102-
| Span Attribute | Description |
103-
| ------------------------------------------------- | ----------------------------------- |
104-
| `url.path` | `PATH_INFO` from WSGI environ |
105-
| `url.query` | `QUERY_STRING` from WSGI environ |
106-
| `http.request.method` | `REQUEST_METHOD` from WSGI environ |
107-
| `server.address` | `SERVER_NAME` from WSGI environ |
108-
| `server.port` | `SERVER_PORT` from WSGI environ |
109-
| `server.protocol.name`, `server.protocol.version` | `SERVER_PROTOCOL` from WSGI environ |
110-
| `url.scheme` | `wsgi.url_scheme` from WSGI environ |
111-
| `url.full` | full URL of the request |
112-
| `http.request.header.{header}` | `HTTP_*` from WSGI environ |
102+
| Span Attribute | Description |
103+
| ------------------------------------------------- | ---------------------------------------------------------- |
104+
| `url.path` | `PATH_INFO` from WSGI environ |
105+
| `url.query` | `QUERY_STRING` from WSGI environ |
106+
| `http.request.method` | `REQUEST_METHOD` from WSGI environ |
107+
| `server.address` | `SERVER_NAME` from WSGI environ |
108+
| `server.port` | `SERVER_PORT` from WSGI environ |
109+
| `server.protocol.name`, `server.protocol.version` | `SERVER_PROTOCOL` from WSGI environ |
110+
| `url.scheme` | `wsgi.url_scheme` from WSGI environ |
111+
| `url.full` | full URL, reconstructed from individual WSGI environ parts |
112+
| `http.request.header.{header}` | `HTTP_*` from WSGI environ |
113113

114114
These attributes will also be sent to Sentry. If you don't want that, you can filter them out using a custom [`before_send`](/platforms/python/configuration/options/#before_send) function.
115115

0 commit comments

Comments
 (0)