View scheduled reports for all users

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
sureshkraj2012
Posts: 65
Joined: Tue Aug 06, 2013 11:06 pm

View scheduled reports for all users

Post by sureshkraj2012 »

Hello,

Can you help me to understand where scheduled reports are getting stored in Nagios for all users?
ssax
Dreams In Code
Posts: 7682
Joined: Wed Feb 11, 2015 12:54 pm

Re: View scheduled reports for all users

Post by ssax »

It's in an encrypted portion of our code but it's stored in the postgresql database and run via a cron job.
sureshkraj2012
Posts: 65
Joined: Tue Aug 06, 2013 11:06 pm

Re: View scheduled reports for all users

Post by sureshkraj2012 »

Thank you!
Could you specify the table name where report details get stored.

nagiosxi=> \dt
List of relations
Schema | Name | Type | Owner
--------+--------------+-------+----------
public | xi_auditlog | table | nagiosxi
public | xi_commands | table | nagiosxi
public | xi_events | table | nagiosxi
public | xi_incidents | table | nagiosxi
public | xi_meta | table | nagiosxi
public | xi_options | table | nagiosxi
public | xi_sysstat | table | nagiosxi
public | xi_usermeta | table | nagiosxi
public | xi_users | table | nagiosxi
ssax
Dreams In Code
Posts: 7682
Joined: Wed Feb 11, 2015 12:54 pm

Re: View scheduled reports for all users

Post by ssax »

Code: Select all

select * from xi_usermeta where keyname = 'scheduled_reports';
Locked