I'm trying to setup some simple monitoring software here, and I figured that the easiest way of keeping track of all the various servers we have would be to store their system status in a MySQL database.
I'm trying to figure out the easiest way of storing the individual machine uptimes. The TIME datatype seems ideal, until I read about the restriction of only storing 34 days in the day portion of it. DATE or TIMESTAMP aren't really much better, since I want something in the form of days-hours-minutes-seconds (roughly).
I'm starting to think that simply storing the uptime as a string is easiest...
