From: André Malo Date: Sat, 28 Sep 2002 13:27:50 +0000 (+0000) Subject: - add mod_logio entry to sitemap X-Git-Tag: WROWE_2_0_43_PRE1~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b83dcf778ed67f4c26a0b1b2718d69d925d59944;p=thirdparty%2Fapache%2Fhttpd.git - add mod_logio entry to sitemap - add mod_logio transformation - add lacking section id to mod_log_config.xml (and update transformation) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97003 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/index.html.en b/docs/manual/mod/index.html.en index bd337652307..1b63d5d5575 100644 --- a/docs/manual/mod/index.html.en +++ b/docs/manual/mod/index.html.en @@ -41,7 +41,7 @@ modules
mod_env
Modifies the environm client
mod_file_cache
Caches a static list of files in memory
mod_headers
Customization of HTTP request and response headers
mod_imap
Server-side imagemap processing
mod_include
Server-parsed html documents (Server Side Includes)
mod_info
Provides a comprehensive overview of the server configuration
mod_isapi
ISAPI Extensions within Apache for Windows
mod_ldap
LDAP connection pooling and result caching -services for use by other LDAP modules
mod_log_config
Logging of the requests made to the server
mod_mime
Associates the requested filename's extensions +services for use by other LDAP modules
mod_log_config
Logging of the requests made to the server
mod_logio
Logging of input and output bytes per request
mod_mime
Associates the requested filename's extensions with the file's behavior (handlers and filters) and content (mime-type, language, character set and encoding)
mod_mime_magic
Determines the MIME type of a file diff --git a/docs/manual/mod/mod_log_config.html.en b/docs/manual/mod/mod_log_config.html.en index e2184dd2466..6eef748be8b 100644 --- a/docs/manual/mod/mod_log_config.html.en +++ b/docs/manual/mod/mod_log_config.html.en @@ -24,7 +24,7 @@ step. The TransferLog and CustomLog directives can be used multiple times in each server to cause each request to be logged to multiple files.

-

Directives

Topics

See also

top
top

Custom Log Formats

The format argument to the LogFormat and @@ -138,15 +138,13 @@ be in strftime(3) format. (potentially localized) this conflicted with the historical ssl %...{var}c syntax.)

-%...I: +%...I: Bytes received, including request and headers, cannot be zero. You need to -enable mod_logio to use this. +enable mod_logio to use this. -%...O: -Bytes sent, including headers, cannot be zero. You need to enable mod_logio to use -this. +%...O: +Bytes sent, including headers, cannot be zero. You need to enable +mod_logio to use this. @@ -197,7 +195,7 @@ this. because otherwise log analysis programs would have to duplicate the entire vhost matching algorithm in order to decide what host really served the request.

-
top

Security Considerations

+
top
- + \ No newline at end of file diff --git a/docs/manual/mod/mod_log_config.xml b/docs/manual/mod/mod_log_config.xml index b5412c0676e..714a8c0525c 100644 --- a/docs/manual/mod/mod_log_config.xml +++ b/docs/manual/mod/mod_log_config.xml @@ -205,7 +205,7 @@ enable mod_logio to use this. host really served the request.

-
+
Security Considerations diff --git a/docs/manual/mod/mod_logio.html.en b/docs/manual/mod/mod_logio.html.en new file mode 100644 index 00000000000..f565c0ced74 --- /dev/null +++ b/docs/manual/mod/mod_logio.html.en @@ -0,0 +1,50 @@ + + +mod_logio - Apache HTTP Server
<-

Apache Module mod_logio

Description: + Logging of input and output bytes per request
Status: + Base
Module Identifier: + logio_module
Source File: + mod_logio.c

Summary

+ +

This module provides the logging of input and output number of + bytes received/sent per request. The numbers reflect the actual bytes + as received on the network, which then takes into account the + headers and bodies of requests and responses. The counting is done + before SSL/TLS on input and after SSL/TLS on output, so the numbers + will correctly reflect any changes made by encryption.

+ +

This module requires mod_log_config.

+ +

Directives

This module provides no directives.

Topics

See also

top

Custom Log Formats

+ + +

This modules adds two new logging directives. The characteristics of the + request itself are logged by placing "%" directives in the format string, + which are replaced in the log file by the values as follows:

+ + + + + + + + + +
%...I:Bytes received, including request and headers, cannot be zero.
%...O:Bytes sent, including headers, cannot be zero.
+ +

Usually, the functionality is used like this:

+ +
+ +
Combined I/O log format:
+ +
"%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" + \"%{User-agent}i\" %I %O"
+ +
+ +
\ No newline at end of file diff --git a/docs/manual/sitemap.html.en b/docs/manual/sitemap.html.en index efc560d9d46..70416a923e3 100644 --- a/docs/manual/sitemap.html.en +++ b/docs/manual/sitemap.html.en @@ -120,6 +120,7 @@ Server on HPUX
  • Apache Module mod_isapi
  • Apache Module mod_ldap
  • Apache Module mod_log_config
  • +
  • Apache Module mod_logio
  • Apache Module mod_mime
  • Apache Module mod_mime_magic
  • Apache Module mod_negotiation
  • diff --git a/docs/manual/sitemap.xml b/docs/manual/sitemap.xml index 9d0a46bc6e2..3cfcc189499 100644 --- a/docs/manual/sitemap.xml +++ b/docs/manual/sitemap.xml @@ -157,6 +157,7 @@ Server on HPUX mod_isapi.xml mod_ldap.xml mod_log_config.xml + mod_logio.xml mod_mime.xml mod_mime_magic.xml mod_negotiation.xml