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

added status and made issue props alphabetical #1201

Merged
merged 1 commit into from
Sep 5, 2019
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
64 changes: 35 additions & 29 deletions src/collections/_documentation/workflow/search.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,25 @@ Issues are an aggregate of one or more events. Searchable properties include wor

Below is a list of Issue-level tokens reserved and known to Sentry:

`is`
`age`

: Filter on the status of an issue.
: Restrict results to issues created since `age`. The syntax is similar to the Unix `find` command:

Values are `resolved`, `unresolved`, `ignored`, `assigned`, and `unassigned`.
Issues new in the last 24 hours:

`age:-24h`

Issues older than 12 hours:

`age:+12h`

Issues created between 12 and 24 hours ago:

`age:+12h age:-24h`

Supported suffixes:

`m -> minutes` `h -> hours` `d -> days` `w -> weeks`

`assigned`

Expand All @@ -98,37 +112,41 @@ Below is a list of Issue-level tokens reserved and known to Sentry:

Values can be your user ID (your email address) or `me` for yourself.

`first-release`

: Restrict results to issues first seen within the given release.

Exact match on the version of a release.

`has`

: Restrict results to issues which have _any_ value for a tag.

`has:user`

`first-release`

: Restrict results to issues first seen within the given release.
`is`

Exact match on the version of a release.
: Filter on the status of an issue.

`age`
Values are `resolved`, `unresolved`, `ignored`, `assigned`, and `unassigned`.

: Restrict results to issues created since `age`. The syntax is similar to the Unix `find` command:
`lastSeen`

Issues new in the last 24 hours:
: Restrict results that were last seen since or until a given point in time. Usage is similar to the `age` token (see above).

`age:-24h`
Issues last seen 30 days ago or more:

Issues older than 12 hours:
`lastSeen:+30d`

`age:+12h`
Issues last seen within the last two days:

Issues created between 12 and 24 hours ago:
`lastSeen:-2d`

`age:+12h age:-24h`
`status`

Supported suffixes:
: Filter on the status of an issue.

`m -> minutes` `h -> hours` `d -> days` `w -> weeks`
Values are `resolved`, `unresolved`, and `ignored`.

`timesSeen`

Expand All @@ -145,18 +163,6 @@ Below is a list of Issue-level tokens reserved and known to Sentry:
- `timesSeen:<10`
- `timesSeen:<=10`

`lastSeen`

: Restrict results that were last seen since or until a given point in time. Usage is similar to the `age` token (see above).

Issues last seen 30 days ago or more:

`lastSeen:+30d`

Issues last seen within the last two days:

`lastSeen:-2d`

### Event Properties

Events are the underlying event data captured using Sentry SDKs (read: errors and exceptions).
Expand Down