You're using icanhazip.com in production? I see from a quick Google search that Puppy Linux seems to use it in some scripts, but how reliable is it?
Things We Forgot to Monitor
11–20 of 66 posts
Re: Things We Forgot to Monitor
#12Re: Things We Forgot to Monitor
#13Earlier quoted context omitted.
6) Free inodes (as distinct from space) per filesystem.
Similar to free inodes, you should also check for maximum number of directories. dir_index option helps, but I've seen it become a problem.
Re: Things We Forgot to Monitor
#14Re: Things We Forgot to Monitor
#15Also: 1) Maximum # of open file descriptors 2) Whether your slave DB stopped replicating because of some error. 3) Whether something is screwed up in your SOLR/ElasticSearch instance so it doesn't respond to search queries, but respond to simple heartbeat pings. 4) If your Redis db stopped saving to disk because of lack of space, or not enough memory, or you forgot to set overcommit memory. 5) If you're running out o…
> Maximum # of open file descriptors Augh. I ran one of my servers hard into that wall, and now it's something I watch. At least I learned from that mistake.
Re: Things We Forgot to Monitor
#16Earlier quoted context omitted.
Similar to free inodes, you should also check for maximum number of directories. dir_index option helps, but I've seen it become a problem.
There's a maximum number of directories? On what filesystem is that?
Where I saw it crop up was 32K folders under /tmp on a cluster system. So no it's not a limit on number of directories entirely (that's inodes), but rather how many subdirectories you can have.
http://en.wikipedia.org/wiki/Ext4#Features <-- Fixes 32K limit
Re: Things We Forgot to Monitor
#17Earlier quoted context omitted.
There's a maximum number of directories? On what filesystem is that?
ext3 without dir_index has a limit of 32K directories in any one directory. Where I saw it crop up was 32K folders under /tmp on a cluster system. So no it's not a limit on number of directories entirely (that's inodes), but rather how many subdirectories you can have. http://en.wikipedia.org/wiki/Ext4#Features <-- Fixes 32K limit
Re: Things We Forgot to Monitor
#18You're using icanhazip.com in production? I see from a quick Google search that Puppy Linux seems to use it in some scripts, but how reliable is it?
Re: Things We Forgot to Monitor
#19Re: Things We Forgot to Monitor
#20You're using icanhazip.com in production? I see from a quick Google search that Puppy Linux seems to use it in some scripts, but how reliable is it?