Location of Dashboard Definitions

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
awilson
Posts: 224
Joined: Mon Mar 21, 2016 1:20 pm

Location of Dashboard Definitions

Post by awilson »

Hi. Is there a way to identify all of the defined dashboards on a system?

Thanks!
npolovenko
Support Tech
Posts: 3457
Joined: Mon May 15, 2017 5:00 pm

Re: Location of Dashboard Definitions

Post by npolovenko »

@awilson, Not quite sure if I understand what you mean by dashboard definitions. Are you looking to get the names of all dashboards in the XI?
I found this query to look up dashboards in MYSQL:
echo "select * from xi_usermeta where keyname = 'dashboards' \G;" | mysql -uroot -pnagiosxi nagiosxi
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
awilson
Posts: 224
Joined: Mon Mar 21, 2016 1:20 pm

Re: Location of Dashboard Definitions

Post by awilson »

I'm pretty sure that is what I need. We still have PostgreSQL and MySQL. I'll check if the nagiosxi database is in PostgreSQL.

Thanks!
npolovenko
Support Tech
Posts: 3457
Joined: Mon May 15, 2017 5:00 pm

Re: Location of Dashboard Definitions

Post by npolovenko »

@awilson, You're welcome. Here's the psql version of the command:
echo "select * from xi_usermeta where keyname = 'dashboards' \G;" | psql nagiosxi nagiosxi
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
awilson
Posts: 224
Joined: Mon Mar 21, 2016 1:20 pm

Re: Location of Dashboard Definitions

Post by awilson »

We can close this. Thanks!
Locked