24

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.

Oliver Gondža
  • 3,386
  • 4
  • 29
  • 49
Mariam P
  • 241
  • 1
  • 2
  • 3

2 Answers2

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
  • 1
    Adding 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
  • 1
    The 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
  • Thank you so much! I wish I'd discovered this Jira trick months ago! – Ryan Apr 13 '21 at 13:08