The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Where does jira store the last accessed dashboard

Sridhar Nimmagadda
Contributor
May 22, 2014

I wan't to reset the users to default to a dashboard, instead of loading the dashboard what they last accessed.

I see tis as an option to reduce unnecessary load on the JIRA server .

2 answers

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Fabio Racobaldo _Catworkx_
Community Champion
May 22, 2014

Hello,

JIRA stores that information into the following table userhistoryitem.

+------------+---------------+------+-----+---------+-------+

| Field | Type | Null | Key | Default | Extra |

+------------+---------------+------+-----+---------+-------+

| ID | decimal(18,0) | NO | PRI | NULL | |

| entitytype | varchar(10) | YES | MUL | NULL | |

| entityid | varchar(60) | YES | | NULL | |

| USERNAME | varchar(255) | YES | | NULL | |

| lastviewed | decimal(18,0) | YES | | NULL | |

| data | longtext | YES | | NULL | |

+------------+---------------+------+-----+---------+-------+

There's a specific entitytype "Dashboard" and the entityid is the id of the related dashboard.
Hope this helps,
Fabio
0 votes
Sridhar Nimmagadda
Contributor
May 24, 2014

Thanks for the help !!

Query for getting the list of last accessed dashboards of all the users

select u.entityid ,u. username from userhistoryitem u where u.entitytype = 'Dashboard' group by u.username, u.lastviewed,entityid having u.lastviewed = max(u.lastviewed)

get the actual dashboard name form portalpage table

select * from portalpage where id = <u.entityid>

Fabio Racobaldo _Catworkx_
Community Champion
May 24, 2014

well done. Please, mak my answer as accepted.

Regards,

Fabio

TAGS
AUG Leaders

Atlassian Community Events