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

docs(tracing): Add missing searchable span properties #10879

Merged
merged 5 commits into from
Sep 25, 2024
Merged
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
38 changes: 36 additions & 2 deletions docs/concepts/search/searchable-properties/spans.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Below is a list of keys and tokens that can be used in the span search:

### `action`

The type of span action.
The type of span action, for example, `SELECT` for a SQL span or `POST` for an HTTP span.

- **Type:** string

Expand Down Expand Up @@ -48,6 +48,18 @@ Device class is a synthesized field that's calculated by using device info found

- **Type:** string

### `domain`

General scope of the span’s action, for example, the tables involved in a `db` span or the host name in an `http` span.

- **Type:** string

### `duration`

The total time taken by the span.

- **Type:** duration

### `environment`

Refers to your code deployment naming convention. For example, `development`, `testing`, `staging` and so on. [Learn more](/product/sentry-basics/environments/). In some pages of [Sentry](https://sentry.io/), you filter on environment using a dropdown.
Expand All @@ -60,6 +72,12 @@ The file extension of a resource span.

- **Type:** string

### `group`

Unique hash of the span’s description.

- **Type:** string

### `http.decoded_response_content_length`

The [decoded body size](https://developer.mozilla.org/en-US/docs/Web/API/PerformanceResourceTiming/decodedBodySize) of the resource.
Expand Down Expand Up @@ -90,9 +108,15 @@ The unique ID of a message from the queue or messaging system.

- **Type:** string

### `module`

The Insights module that the span is associated with, for example, `cache`, `db`, `http`, and so on.

- **Type:** string

### `op`

Span operation.
The operation of the span, for example, `http.client`, `middleware`.

- **Type:** string

Expand Down Expand Up @@ -133,6 +157,16 @@ Version of the Sentry SDK that sent the event.

- **Type:** string

### `self_time`

The duration of the span excluding the duration of its child spans.

- **Type:** string

### `status`

Status of the operation the span represents.

### `status_code`

The HTTP response status code.
Expand Down
Loading