Skip to content

Commit 2ffce36

Browse files
include issue as a searchable property for issues. (#6285)
update `project` as a searchable property for issues. add `project.id` as a searchable property for issues and events.
1 parent f51cce3 commit 2ffce36

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/docs/product/sentry-basics/search/searchable-properties.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Release properties overlap with event and issue search properties, so they don't
139139
| http.url | Full URL of the request that caused the error, but without any parameters | x | x | | string |
140140
| id | The event or replay id. In **Issues**, use only the ID value without the `id` key. | x | x | x | uuid |
141141
| is | The properties of an issue. Values can be: `unresolved`, `resolved`, `ignored`, `assigned`, `unassigned`, `linked`, or `unlinked`. The `linked` and `unlinked` values return issues based on whether they are linked to an external issue tracker or not. | | x | | status |
142-
| issue | The short issue code, for example `SENTRY-ABC`. | x | | | string |
142+
| issue | The short issue code, for example `SENTRY-ABC`. | x | x | | string |
143143
| issue.category | The category of the issue (either `error` or `performance`). | | x | | string |
144144
| last_seen() | Datetime when the event was last seen. Equivalent to `max(timestamp)`. Doesn't take a parameter. | x | | | datetime |
145145
| lastSeen | Datetime when the event was last seen. For example, `lastSeen:+30d` returns issues last seen 30 days ago or more; `lastSeen:-2d` returns issues last seen within the past two days. This is similar to `age`. | | x | | datetime |
@@ -173,7 +173,8 @@ Release properties overlap with event and issue search properties, so they don't
173173
| percentile(field,level) | Returns results with an approximate percentile of the field to the level. The level can be between `0` and `1`. For example, if you wanted to find the 50th percentile of transaction durations, you would enter `percentile(transaction.duration, 0.5)`. | x | | | number |
174174
| platform | Name of the platform. This is only a metrics property for [valid platforms](https://github.com/getsentry/relay/blob/9d0d2dc54233d46043a369e1dacf7db900953c14/relay-general/src/protocol/constants.rs#L1-L21), defaulting to `other`. | x | | x | string |
175175
| platform.name | Name of the platform | | x | | string |
176-
| project | The name of the project. In **Issues** you can only search by project ID.<br></br><br></br>In some pages of [sentry.io](https://sentry.io), you filter on project using a dropdown. | x | x | | string |
176+
| project | The name of the project. In some pages of [sentry.io](https://sentry.io), you can also filter on project using a dropdown. | x | x | | string |
177+
| project.id | The id of the project. | x | x | | number |
177178
| pXY(duration field) | Returns results with an approximate percentile of the field. Replace "XY" with 50, 75, 95, 99, or 100. For example, if you wanted to find the 50th percentile of transaction durations, you would enter `p50(transaction.duration)`. | x | | | number |
178179
| release | A release is a version of your code deployed to an environment. You can create a token with an exact match of the version of a release, or `release:latest` to pick the most recent release. | x | x | x | string |
179180
| release.build | The number that identifies an iteration of your app. For example, `CFBundleVersion` on iOS or `versionCode` on Android. [Learn more](/product/releases/usage/sorting-filtering/). | x | x | | number |

0 commit comments

Comments
 (0)