Hello all,
I am facing a strange issue on Nagios XI. I've created a command to monitor all mounted FS on an AIX server. Everything seems to be working properly. When I do the "Check Command" from the Nagios XI Service configure tab the output is partially cut. When the same command is commited from the system, the output shows properly all filesystems mounted, without any data loss.
Even more, when I check the Service Details from Home tab, I lose more data, missing more than the half which is showed in the "Check Command" output (which this outout was already missing some information).
Is there any character limit in the "Check Command" output and in the Status Information from the Home Tab that is making me "lose" information? If so, is there a way to increase that limit?
Thanks in advance for your help.
Regards,
J.
Nagios XI missing/cutting Output information
Re: Nagios XI missing/cutting Output information
You will need to increase the column size. Run the following:
Code: Select all
echo "desc nagios.nagios_servicestatus" | mysql -t -pnagiosxi | grep "output\|perfdata"
echo "alter table nagios.nagios_servicestatus modify output varchar(50000);" | mysql -pnagiosxi
echo "alter table nagios.nagios_servicestatus modify long_output varchar(50000);" | mysql -pnagiosxi
echo "alter table nagios.nagios_servicestatus modify perfdata varchar(50000);" | mysql -pnagiosxi
echo "desc nagios.nagios_servicestatus" | mysql -t -pnagiosxi | grep "output\|perfdata"Former Nagios employee
"It is turtles. All. The. Way. Down. . . .and maybe an elephant or two."
VI VI VI - The editor of the Beast!
Come to the Dark Side.
"It is turtles. All. The. Way. Down. . . .and maybe an elephant or two."
VI VI VI - The editor of the Beast!
Come to the Dark Side.
Re: Nagios XI missing/cutting Output information
Like a charm.
Many thanks
Regards,
J.
Many thanks
Regards,
J.
Re: Nagios XI missing/cutting Output information
No problem. Have a good one!
Former Nagios employee
"It is turtles. All. The. Way. Down. . . .and maybe an elephant or two."
VI VI VI - The editor of the Beast!
Come to the Dark Side.
"It is turtles. All. The. Way. Down. . . .and maybe an elephant or two."
VI VI VI - The editor of the Beast!
Come to the Dark Side.