]> granicus.if.org Git - apache/blob - docs/manual/mod/mod_dumpio.xml.ja
Prelim docs
[apache] / docs / manual / mod / mod_dumpio.xml.ja
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
3 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
4 <!-- English Revision: 559006:1421821 (outdated) -->
5
6 <!--
7  Licensed to the Apache Software Foundation (ASF) under one or more
8  contributor license agreements.  See the NOTICE file distributed with
9  this work for additional information regarding copyright ownership.
10  The ASF licenses this file to You under the Apache License, Version 2.0
11  (the "License"); you may not use this file except in compliance with
12  the License.  You may obtain a copy of the License at
13
14      http://www.apache.org/licenses/LICENSE-2.0
15
16  Unless required by applicable law or agreed to in writing, software
17  distributed under the License is distributed on an "AS IS" BASIS,
18  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  See the License for the specific language governing permissions and
20  limitations under the License.
21 -->
22
23 <modulesynopsis metafile="mod_dumpio.xml.meta">
24
25 <name>mod_dumpio</name>
26 <description>望むようにすべての I/O をエラーログにダンプする</description>
27 <status>Extension</status>
28 <sourcefile>mod_dumpio.c</sourcefile>
29 <identifier>dumpio_module</identifier>
30
31 <summary>
32     <p><code>mod_dumpio</code> を使うと、Apache が受け取ったすべての入力と
33     Apache により送られたすべての出力との、両方もしくはどちらか一方を、
34     エラーログファイルにログ収集 <transnote>ダンプ dump</transnote>
35     できます。</p>
36
37     <p>データのロギングは、SSL 復号化の直後 (入力) と SSL
38     暗号化の直前 (出力) に行なわれます。ご想像の通り、
39     このモジュールはとてつもないデータ量を出力しますので、
40     問題をデバッグしているときにのみ使用するようにしてください。</p>
41 </summary>
42
43 <section id="enable">
44     <title>dumpio サポートを有効にする</title>
45
46     <p>このモジュールを有効にするには、モジュールがコンパイルされていて、
47     実行する Apache の設定でサーバに組み込まれている必要があります。
48     ロギング機能は、以下のディレクティブを使って有効にしたり
49     無効にしたりできます。</p>
50 </section>
51
52 <directivesynopsis>
53
54 <name>DumpIOInput</name>
55 <description>エラーログにすべての入力データをダンプ</description>
56 <syntax>DumpIOInput On|Off</syntax>
57 <default>DumpIOInput Off</default>
58 <contextlist><context>server config</context></contextlist>
59 <compatibility>DumpIOInput は Apache 2.1.3 以降のみで使用可能</compatibility>
60
61 <usage>
62     <p>すべての入力のダンプを有効にします。</p>
63
64     <example><title>例</title>
65       DumpIOInput On
66     </example>
67 </usage>
68
69 </directivesynopsis>
70
71 <directivesynopsis>
72
73 <name>DumpIOOutput</name>
74 <description>エラーログにすべての出力データをダンプ</description>
75 <syntax>DumpIOOutput On|Off</syntax>
76 <default>DumpIOOutput Off</default>
77 <contextlist><context>server config</context></contextlist>
78 <compatibility>DumpIOOutput は Apache 2.1.3 以降でのみ使用可能</compatibility>
79
80 <usage>
81     <p>すべての出力のダンプを有効にします。</p>
82
83     <example><title>例</title>
84       DumpIOOutput On
85     </example>
86 </usage>
87
88 </directivesynopsis>
89
90 <directivesynopsis>
91
92 <name>DumpIOLogLevel</name>
93 <description>DumpIO の出力のログレベルを制御します</description>
94 <syntax>DumpIOLogLevel <var>level</var></syntax>
95 <default>DumpIOLogLevel debug</default>
96 <contextlist><context>server config</context></contextlist>
97 <compatibility>DumpIOLogLevel は Apache 2.2.4 以降で利用可能</compatibility>
98
99 <usage>
100     <p>指定した <directive module="core">LogLevel</directive>
101     において、全出力のダンプ機能を有効にします。</p>
102
103     <example><title>Example</title>
104       DumpIOLogLevel notice
105     </example>
106     
107     <note><title>互換性</title>2.2.4 以前の <module>mod_dumpio</module>
108     では <directive module="core">LogLevel</directive> が <code>debug</code>
109     の時にのみ dump を行っていました。</note>
110 </usage>
111
112 </directivesynopsis>
113 </modulesynopsis>