Page 1 of 1

Can I extend the space of Status informaiton?

Posted: Fri Jul 11, 2014 1:57 am
by phyo
Hi all,

By using Nagiosxi, we monitored ASR9010 router and ASA5585 firewall CPU usage. But we can't see the all the output information on Status information column. We can see all these information on performance graph by clicking up/down arrow icon.

ASA CPU usage status information:
https://db.tt/UYcaH3jV

ASA CPU usage performance graph:
https://db.tt/dAg8LE01

Can it be possible to show all the CPU status output on status information?

Re: Can I extend the space of Status informaiton?

Posted: Fri Jul 11, 2014 10:28 am
by lmiltchev
Open a ssh (putty) session to your Nagios XI server, and run the following command (copy/paste the whole command and hit "Enter"):

Code: Select all

echo "
alter table nagios_servicestatus modify output varchar(65535) not null,modify long_output varchar(65535) not null,modify perfdata varchar(65535) not null;
alter table nagios_hoststatus modify output varchar(65535) not null, modify long_output varchar(65535) not null,modify perfdata varchar(65535) not null;
alter table nagios_servicechecks modify output varchar(65535) not null,modify long_output varchar(65535) not null,modify perfdata varchar(65535) not null;
alter table nagios_hostchecks modify output varchar(65535) not null,modify long_output varchar(65535) not null,modify perfdata varchar(65535) not null;
" | mysql -pnagiosxi nagios
Let me know if this fixed your issue.

Re: Can I extend the space of Status informaiton?

Posted: Mon Jul 14, 2014 10:39 pm
by phyo
Yeah it working. Now I can see all the CPU information of my ASA 5585 CPU information.

https://db.tt/rut4dH9v

Thanks.