how to know when/who watcher been added to jira ticket?

HP January 10, 2016

Hi All,

I wanted to know who/when the watcher being added to the JIRA ticket, any idea to check it from GUI ? or from DB? Thanks!

2 answers

1 vote
Vasiliy Zverev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 10, 2016

Try using this SQL 

select
	userassociation.CREATED
	, userassociation.SOURCE_NAME
	, jiraissue.issuenum
from
	userassociation
	join jiraissue	
		join project	on	jiraissue.PROJECT = project.ID
	on	userassociation.SINK_NODE_ID = jiraissue.ID
	and	userassociation.SINK_NODE_ENTITY = 'Issue'
where
	project.pkey = '' --type projct key here
	and jiraissue.issuenum = 1 -- type issue number here
0 votes
GabrielleJ
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 11, 2016

From the GUI, Click on the "More" button then click "Watchers"

Suggest an answer

Log in or Sign up to answer