JSS dashboard - how to identify troublemakers :)

donmontalvo
Esteemed Contributor III

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.

--
https://donmontalvo.com
1 ACCEPTED SOLUTION

mscottblake
Valued Contributor

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`;

View solution in original post

4 REPLIES 4

scottb
Honored Contributor

Interesting question.
I wondered about that too.

mscottblake
Valued Contributor

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`;

donmontalvo
Esteemed Contributor III

(Duplicate)

--
https://donmontalvo.com

donmontalvo
Esteemed Contributor III

@mscottblake thanks, beats my friend's solution.

29a25918be974103b286a90990b6f9ca

--
https://donmontalvo.com