Posted on 01-10-2017 06:51 PM
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.
Solved! Go to Solution.
Posted on 01-11-2017 08:55 PM
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`;
Posted on 01-11-2017 08:24 AM
Interesting question.
I wondered about that too.
Posted on 01-11-2017 08:55 PM
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`;
Posted on 01-29-2017 08:09 PM
(Duplicate)
Posted on 01-29-2017 08:11 PM