Can I extend the space of Status informaiton?

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
phyo
Posts: 162
Joined: Sun Dec 01, 2013 10:50 pm

Can I extend the space of Status informaiton?

Post 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?
User avatar
lmiltchev
Bugs find me
Posts: 13589
Joined: Mon May 23, 2011 12:15 pm

Re: Can I extend the space of Status informaiton?

Post 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.
Be sure to check out our Knowledgebase for helpful articles and solutions!
phyo
Posts: 162
Joined: Sun Dec 01, 2013 10:50 pm

Re: Can I extend the space of Status informaiton?

Post by phyo »

Yeah it working. Now I can see all the CPU information of my ASA 5585 CPU information.

https://db.tt/rut4dH9v

Thanks.
Locked