ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/checkrusage.ext
Revision: 1.9
Committed: Wed Nov 16 22:14:05 2016 UTC (7 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-3_1, HEAD
Changes since 1.8: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #! perl
2
3 # restart server when certain resource limits are exceeded
4
5 # TODO, CONF framework?
6 our $MAX_VMSIZE = $cf::CFG{checkrusage}{vmsize} || 1_000_000_000;
7
8 $^O eq "linux" or die "only linux supported right now.\n";
9
10 our $STAT_FH;
11 our $TIMER;
12
13 cf::post_init {
14 cf::async_ext {
15 $STAT_FH = Coro::AIO::aio_open "/proc/self/stat", IO::AIO::O_RDONLY, 0
16 or return;
17
18 $TIMER = cf::periodic 10, sub {
19 sysseek $STAT_FH, 0, 0;
20 sysread $STAT_FH, my $stat, 4096; # only a single line
21 my $vmsize = (split / /, $stat)[22];
22
23 cf::cleanup "memory usage growing high ($vmsize > $MAX_VMSIZE), server would run out of memory soon", 0
24 if $vmsize >= $MAX_VMSIZE;
25 };
26 };
27 };