I clicked watcher for many JIRA tickets, but I can't find a filter that shows me all the tickets I am watching. Can someone direct me to the right link or filter to look.
Asked
Active
Viewed 2.0k times
24
-
1JIRA is such a dumpster fire. – Johannes Fahrenkrug Apr 18 '19 at 00:30
2 Answers
35
Type in the Jira issues search (Issues > Search for issues): key in watchedIssues()
or go directly to the URL, like to your JIRA domain http://<your-jira-domain>/jira/issues/?jql=key%20in%20watchedIssues()
There is also a gadget you can add to your JIRA homepage (dashboard): Watched Issues
From the top right button "add gadget", then on the pop-pup search for "watched" and you will get it.

Thomas W
- 14,757
- 6
- 48
- 67

A_Di-Matteo
- 26,902
- 7
- 94
- 128
-
1Adding the watch gadget was a simple & easy solution. Although, I had to make a separate dashboard to add it. – givonz Jan 31 '22 at 05:15
12
If you open up a "New search". Then the filter below will show you, your watched tasks:
watcher = currentUser() AND resolution = Unresolved ORDER BY priority DESC, updated DESC
Hope it suits you :-)

Kenneth Jensen
- 121
- 1
- 2
-
1The URL link would like this, https://jira.com/issues/?jql=watcher%20%3D%20currentUser()%20AND%20resolution%20%3D%20Unresolved%20ORDER%20BY%20priority%20DESC%2C%20updated%20DESC – foxiris Apr 14 '20 at 09:07
-