
Re: thold and hard drives
Anonymous wrote:
Hi community,
i have run into a problem with thold. I would like to monitor the amount of used diskspace. But aparently the maximum of "high threshold" is 2147483647. So it appears to me, that I can just monitor a used space of a hdd which is limited to 2g.
What am I doing wrong?
Thanks in advance
dagonet
The problem is with the database. You need to change these columns in your database.
Code:
`thold_hi` int(50) default NULL,
`thold_low` int(50) default NULL,
`lastread` int(50) default NULL,
to this
Code:
`thold_hi` varchar(100) default NULL,
`thold_low` varchar(100) default NULL,
`lastread` varchar(100) default NULL,
and it should start working for you.