From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 7B3831F47D; Sat, 25 Feb 2023 00:23:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1677284634; bh=H67f9OU5sOTDT5uI94N9ThvlwgD2U4hTSbCac+SkLqU=; h=Date:From:To:Cc:Subject:From; b=M82U5phNgfATfCTX1nDVM2gVbQ5YUpgeOOtWbkl/FMuneDpO6JO8Hi8Dt0kEKpzmt 2Eu8CsIEb3cr0IbbUzuU1pJdSf95CYvA4EYOcu+kUV3okzNAO4hBmY4H2Aaf97X2qN 0c6U8LaL/RJYTgE+jctFvS+4keFHkcwW3A5Gt+Ps= Date: Sat, 25 Feb 2023 00:23:54 +0000 From: Eric Wong To: ruby-talk@ruby-lang.org, raindrops-public@yhbt.net Cc: Dale Hamel Subject: [ANN] raindrops 0.20.1 - real-time stats for preforking Rack servers Message-ID: <20230225002354.M365322@dcvr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline List-Id: raindrops is a real-time stats toolkit to show statistics for Rack HTTP servers. It is designed for preforking servers such as unicorn, but should support any Rack HTTP server on platforms supporting POSIX shared memory. It may also be used as a generic scoreboard for sharing atomic counters across multiple processes. * https://yhbt.net/raindrops/ * public mail box (no subscribers, no HTML mail): raindrops-public@yhbt.net * mail archives: https://yhbt.net/raindrops-public/ http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/raindrops-public imaps://yhbt.net/inbox.comp.lang.ruby.raindrops.0 nntp://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/inbox.comp.lang.ruby.raindrops imap://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/inbox.comp.lang.ruby.raindrops.0 (.onion URLs require Tor) * git clone https://yhbt.net/raindrops.git * torsocks git clone http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/raindrops.git * https://yhbt.net/raindrops/NEWS.atom.xml Changes: raindrops 0.20.1 Stats for SO_REUSEPORT sockets are now handled properly. Thanks to Dale Hamel for the patches. Dale Hamel (2): Fix queue stats for sockets with SO_REUSEPORT Fix off by one error in test -- -_-