Home » Categories » Products » Nagios XI » Troubleshooting » Common Problems

Nagios XI - Status Information Cut Off At 256 Characters

Problem Description

In the Nagios XI interface, the Status Information shown for a service stops at 256 characters (anything after is cut off). When you look at the service in Nagios Core you can see the entire Status Information.

 

Explanation

In Nagios XI, that data is stored in a database as opposed to Core. When XI stores it in the database, the database has a limit as to how much data can be stored.

 

Resolving The Problem

The database can be updated so that it can store more information.

Open an SSH session to your XI server and execute the following commands:

echo "use nagios;alter table nagios_servicestatus modify output varchar(65535) not null;alter table nagios_servicestatus modify long_output TEXT not null;alter table nagios_servicestatus modify perfdata TEXT not null;" | mysql -pnagiosxi

echo "use nagios;alter table nagios_hoststatus modify output varchar(65535) not null;alter table nagios_hoststatus modify long_output TEXT not null;alter table nagios_hoststatus modify perfdata TEXT not null;" | mysql -pnagiosxi

echo "use nagios;alter table nagios_servicechecks modify output varchar(65535) not null;alter table nagios_servicechecks modify long_output TEXT not null;alter table nagios_servicechecks modify perfdata TEXT not null;" | mysql -pnagiosxi

echo "use nagios;alter table nagios_hostchecks modify output varchar(65535) not null;alter table nagios_hostchecks modify long_output TEXT not null;alter table nagios_hostchecks modify perfdata TEXT not null;" | mysql -pnagiosxi

 

Note:

  • These are long commands

  • The commands end with -pnagiosxi where nagiosxi is the default password. If you have changed your database password you'll need to change the command to reflect this.

  • If our have offloaded MySQL to another server, these commands need to be executed on the offloaded server.

 

Final Thoughts

For any support related questions please visit the Nagios Support Forums at:

http://support.nagios.com/forum/

5 (1)
Article Rating (1 Votes)
Rate this article
  • Icon PDFExport to PDF
  • Icon MS-WordExport to MS Word
Attachments Attachments
There are no attachments for this article.
Related Articles RSS Feed
Nagios XI - Unable To Login Using Two Factor Authentication
Viewed 7490 times since Tue, Apr 10, 2018
Nagios XI - ICMP and Ping Checks Stopped Graphing
Viewed 11027 times since Mon, Jan 25, 2016
Nagios XI - Hosts Pending/Gray
Viewed 10319 times since Tue, Jan 6, 2015
Installation errors on customized corporate builds of CentOS or RHEL
Viewed 9829 times since Tue, Jan 26, 2016
Nagios XI - MK Livestatus Problems With Mod-Gearman
Viewed 4877 times since Thu, Feb 25, 2016
Nagios XI - Empty Screen for Wizard, Component, Dashlet
Viewed 5865 times since Wed, Jan 27, 2016
Nagios XI - Running Out Of Disk Space On The Nagios XI VM
Viewed 20722 times since Tue, Jan 27, 2015
Nagios XI - Upgrade errors - root.crontab.orig: cannot overwrite existing file
Viewed 3919 times since Tue, Jan 26, 2016
Nagios XI - Disabling Database UTF8 Connectivity
Viewed 4613 times since Thu, Mar 8, 2018
Nagios XI - How To Delete A Data Source From An RRD File
Viewed 11507 times since Wed, Apr 27, 2016