The Service Status Information in XI has a Limit of 255 characters and therefore the Output is trimmed.
If you check the Service Status Information in nagios core (Service Status Detail -> Advanced -> See this Service in nagios core), the ful Output is shown.
My question is how to extend the Limit of the Service Status Information in XI.
regards,
roland
Service status information output more than 255 characters
Service status information output more than 255 characters
Kind regards,
Roland
Roland
Re: Service status information output more than 255 characte
The following SQL command will extend that limit to 255:
Run it on the "nagios" database in MySQL. Note that this will only affect statuses going forward - it will not show anything more than what is already in the db.
Code: Select all
alter table nagios_servicestatus modify output varchar(1024) not null;Former Nagios employee
Re: Service status information output more than 255 characte
thank's tmcdonald,
this is what i was looking for!
this is what i was looking for!
Kind regards,
Roland
Roland