Files | Admin

Notes:

Release Name: 0.3.0

Notes:
Raindrops is a real time stats package to show statistics for Rack HTTP
servers.  It is designed for preforking servers such as Rainbows! and
Unicorn, but should support any Rack HTTP server under Ruby 1.9, 1.8 and
possibly Rubinius (untested) on platforms supporting POSIX shared memory
and compiled with GCC (for atomic builtins).

* http://raindrops.bogomips.org/
* raindrops@librelist.com
* git://git.bogomips.org/raindrops.git

Changes:

Raindrops is now licensed under the LGPLv2.1 or LGPLv3 (from
LGPLv3-only) to allow bundling in GPLv2-only applications.

There are small documentation updates and updated examples
at http://raindrops.bogomips.org/examples/



Changes: GIT-VERSION-GEN | 2 +- GNUmakefile | 3 ++- LICENSE | 12 +++++++----- examples/linux-tcp-listener-stats.rb | 18 +++++++++++++++++- ext/raindrops/linux_inet_diag.c | 6 +++--- lib/raindrops.rb | 4 ++-- 6 files changed, 32 insertions(+), 13 deletions(-) commit eed4332421a421a3455aa48ec688347502a9cb0a Author: Eric Wong Date: Sat Jul 10 22:19:40 2010 +0000 raindrops v0.3.0 - LGPL v2.1 and v3.0 Raindrops is now licensed under the LGPLv2.1 or LGPLv3 (from LGPLv3-only) to allow bundling in GPLv2-only applications. There are small documentation updates and updated examples at http://raindrops.bogomips.org/examples/ commit 4e42082413f64baec0b844bdf743d598af433aad Author: Eric Wong Date: Sat Jul 10 22:19:20 2010 +0000 doc: add examples directory to website commit 87dc142973f7d1546bdf739b2b1f0fa714313750 Author: Eric Wong Date: Sat Jul 10 22:13:02 2010 +0000 LICENSE: dual license under LGPLv2.1 and LGPLv3 This allows GPLv2-only applications to bundle us. commit 3f7f59ff522bf322383f1bebaa18a979608804f7 Author: Eric Wong Date: Thu Jul 1 19:25:57 2010 -0700 examples/linux-tcp-listener-stats: warn on possibly invalid addresses It is a likely mistake to specify a local address such as "127.0.0.1:#{port}" as an argument to linux-tcp-listener-stats when our listener is listening on all addresses ("0.0.0.0:#{port}"). So make an effort to detect this mistake as all of our known users on our mailing list seem to make it: http://mid.gmane.org/AANLkTinP5fBfcRa6Y3-MrMzDqjRRrgEOIunvn_h7q2WS@mail.gmail.com commit bb24816e1291bbbb26065af3fb5bd76a4cbb0c95 Author: Eric Wong Date: Thu Jul 1 17:37:08 2010 -0700 linux_inet_diag: rename "addrs" => "query_addr" "query_addr" is a more appropriate name since we only query one address at a time via netlink rather than relying on OR-ing in the bytecode. commit 590b3d9b66e8b345a6053cbfc8304f08ab58caf5 Author: Eric Wong Date: Tue Jun 29 00:51:23 2010 +0000 examples/linux-tcp-listener-stats: fix usage string