Skip to main content

We have many techs, and they all love the JSS Dashboard.



Is there a way to tell who is using the JSS Dashboard excessively.



I mean, it is there to be used, but how do we know if someone has 1,000 pie charts in their JSS Dashboard?



Is there any documentation or the Dashboard's impact to JSS?



Asking for a friend.

Interesting question.
I wondered about that too.


Looks like the only way is via MySQL.



List all dashboard objects:



SELECT * FROM `user_preferences` WHERE `key_pair_name`='dashboard';


Get a list of users and the number of dashboard objects:



SELECT `username`, count(*) FROM `user_preferences` WHERE `key_pair_name`='dashboard' GROUP BY `username`;

(Duplicate)


@mscottblake thanks, beats my friend's solution.