From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-2.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00 shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: cmogstored-public@bogomips.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id A20B8633844; Fri, 13 Feb 2015 00:51:48 +0000 (UTC) From: Eric Wong To: cmogstored-public@bogomips.org Cc: Eric Wong Subject: [PATCH] tapset/http_access_log: note CLF differences Date: Fri, 13 Feb 2015 00:49:28 +0000 Message-Id: <1423788568-3136-1-git-send-email-e@80x24.org> List-Id: We have two differences from CLF, note them correctly. --- tapset/http_access_log.gawk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tapset/http_access_log.gawk b/tapset/http_access_log.gawk index b88689c..7a5823c 100755 --- a/tapset/http_access_log.gawk +++ b/tapset/http_access_log.gawk @@ -3,8 +3,9 @@ # This takes the output of the all.stp tapset distributed with cmogstored # This emits output similar to Common Log Format (CLF), with two exceptions: # -# The byte count for PUT requests is recorded in byte bytes transferred +# 1) The byte count for PUT requests is recorded in byte bytes transferred # since PUT responses are always an empty body with cmogstored. +# 2) elapsed time of the request is added. / http_accepted / { pid = $1 -- EW