Page 1 of 1

MySQL Threads-connected Issue

Posted: Thu Jul 25, 2019 6:39 am
by mindspring
Hi there,

I seem to have a problem with this monitor where it says critical even though I set --warning and --critical to higher than the actual number

Please see attached.

My command in core config manager looks like this:

--hostname=sql-new.servers.chat2brand.com --port=3306 --username=nagios --password="xxxx" --database=information_schema --mode threads-connected --warning 450--critical 600

Re: MySQL Threads-connected Issue

Posted: Thu Jul 25, 2019 11:24 am
by scottwilkerson
You are missing a space after the 450

Code: Select all

--hostname=sql-new.servers.chat2brand.com --port=3306 --username=nagios --password="xxxx" --database=information_schema --mode threads-connected --warning 450--critical 600l
should be

Code: Select all

--hostname=sql-new.servers.chat2brand.com --port=3306 --username=nagios --password="xxxx" --database=information_schema --mode threads-connected --warning 450 --critical 600l