Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 2347 invoked from network); 27 Feb 2005 13:49:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 27 Feb 2005 13:49:12 -0000 Received: (qmail 73555 invoked by uid 500); 27 Feb 2005 13:49:00 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 73525 invoked by uid 500); 27 Feb 2005 13:49:00 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 73511 invoked by uid 99); 27 Feb 2005 13:48:59 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of trawick@gmail.com designates 64.233.170.198 as permitted sender) Received: from rproxy.gmail.com (HELO rproxy.gmail.com) (64.233.170.198) by apache.org (qpsmtpd/0.28) with ESMTP; Sun, 27 Feb 2005 05:48:58 -0800 Received: by rproxy.gmail.com with SMTP id y7so281788rne for ; Sun, 27 Feb 2005 05:48:54 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding; b=NZATBSLH+AQSj7pUMr4mqV5Q/Isl8xC+wgEgTINZPn+/Lrt7Ppomcov3W6x1/KrSAoM6roEgaL4G118f9ezOOc2GmrGVCyRYIBUR3bruAHj5SQwiTkgp8jIi3O/FepUbpBVQsm6znrFICKoDlM6e9RqGIfXk7J4HwS+Z+nuQYCw= Received: by 10.38.65.62 with SMTP id n62mr577396rna; Sun, 27 Feb 2005 05:48:54 -0800 (PST) Received: by 10.39.2.68 with HTTP; Sun, 27 Feb 2005 05:48:54 -0800 (PST) Message-ID: Date: Sun, 27 Feb 2005 08:48:54 -0500 From: Jeff Trawick Reply-To: Jeff Trawick To: dev@httpd.apache.org Subject: [1.3 PATCH] tracking the active module Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N (See other thread on tracking the active phase with Apache 2.x. Where is a request hung, what module crashed, etc.) With Apache 1.3, it is straightforward to track the actual module that the request is stuck (crashed) in. Here is part of a mod_status report: http://httpd.apache.org/~trawick/activemodule.jpg Here's a crash report from mod_whatkilledus. Everything is business as usual, except the crashing module has been identified. [Sun Feb 27 08:37:19 2005] pid 16641 mod_whatkilledus sig 11 crash [Sun Feb 27 08:37:19 2005] pid 16641 mod_whatkilledus active module: mod_silly.c [Sun Feb 27 08:37:19 2005] pid 16641 mod_whatkilledus active connection: 127.0.0.1:33462->127.0.0.1:8080 (conn_rec 80bc0fc) [Sun Feb 27 08:37:19 2005] pid 16641 mod_whatkilledus active request (request_rec 80bd134): GET /silly/?translate_crash [Sun Feb 27 08:37:19 2005] pid 16641 mod_whatkilledus end of report The patch is at http://httpd.apache.org/~trawick/active_module.patch There are some small changes to mod_whatkilledus in there that are unrelated to this feature (posted previously, no comments received).