Skip to content

Commit 7a9f88c

Browse files
0Calorieslizokm
andauthored
docs(tracing): Add missing searchable span properties (#10879)
* docs(tracing): Add missing searchable span properties * Update docs/concepts/search/searchable-properties/spans.mdx * Update docs/concepts/search/searchable-properties/spans.mdx * Update docs/concepts/search/searchable-properties/spans.mdx Co-authored-by: Liza Mock <[email protected]> * Update docs/concepts/search/searchable-properties/spans.mdx Co-authored-by: Liza Mock <[email protected]> --------- Co-authored-by: Liza Mock <[email protected]>
1 parent a12d08d commit 7a9f88c

File tree

1 file changed

+36
-2
lines changed
  • docs/concepts/search/searchable-properties

1 file changed

+36
-2
lines changed

docs/concepts/search/searchable-properties/spans.mdx

Lines changed: 36 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Below is a list of keys and tokens that can be used in the span search:
2020

2121
### `action`
2222

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

2525
- **Type:** string
2626

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

4949
- **Type:** string
5050

51+
### `domain`
52+
53+
General scope of the span’s action, for example, the tables involved in a `db` span or the host name in an `http` span.
54+
55+
- **Type:** string
56+
57+
### `duration`
58+
59+
The total time taken by the span.
60+
61+
- **Type:** duration
62+
5163
### `environment`
5264

5365
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.
@@ -60,6 +72,12 @@ The file extension of a resource span.
6072

6173
- **Type:** string
6274

75+
### `group`
76+
77+
Unique hash of the span’s description.
78+
79+
- **Type:** string
80+
6381
### `http.decoded_response_content_length`
6482

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

91109
- **Type:** string
92110

111+
### `module`
112+
113+
The Insights module that the span is associated with, for example, `cache`, `db`, `http`, and so on.
114+
115+
- **Type:** string
116+
93117
### `op`
94118

95-
Span operation.
119+
The operation of the span, for example, `http.client`, `middleware`.
96120

97121
- **Type:** string
98122

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

134158
- **Type:** string
135159

160+
### `self_time`
161+
162+
The duration of the span excluding the duration of its child spans.
163+
164+
- **Type:** string
165+
166+
### `status`
167+
168+
Status of the operation the span represents.
169+
136170
### `status_code`
137171

138172
The HTTP response status code.

0 commit comments

Comments
 (0)