Page 1 of 1

Dashboard x-fer

Posted: Mon Sep 28, 2020 10:25 am
by SteveBeauchemin
Has anyone come up with a way to copy a dashboard from one Nagios XI instance to another instance?

Any little tools hanging around to grab that SQL data and prepare it to import on a different system?

Any suggestions would be nice. Recreating from scratch can get tedious.

Just asking.

Thanks

Steve B

Re: Dashboard x-fer

Posted: Tue Sep 29, 2020 3:28 pm
by benjaminsmith
Hi Steve,

That's a good suggestion. Currently, there isn't a built-in import/export dashboard option in Nagios XI. That said, the dashboards are located in the database, you can view them with the following query ( might be possible to import this to another database but I haven't tested it).

Code: Select all

mysql -u root -p
SELECT * FROM xi_usermeta WHERE keyname = 'dashboards';
Regards,
Benjamin