aboutsummaryrefslogtreecommitdiffstats
path: root/lib/kernel/doc/src/logger_disk_log_h.xml
blob: 5b2374690ed13ade522f30b84f4f95f0e87aba9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">

<erlref>
  <header>
    <copyright>
      <year>2017</year><year>2018</year>
      <holder>Ericsson AB. All Rights Reserved.</holder>
    </copyright>
    <legalnotice>
      Licensed under the Apache License, Version 2.0 (the "License");
      you may not use this file except in compliance with the License.
      You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

      Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      See the License for the specific language governing permissions and
      limitations under the License.

    </legalnotice>

    <title>logger_disk_log_h</title>
    <prepared></prepared>
    <responsible></responsible>
    <docno></docno>
    <approved></approved>
    <checked></checked>
    <date></date>
    <rev>A</rev>
    <file>logger_disk_log_h.xml</file>
  </header>
  <module since="OTP 21.0">logger_disk_log_h</module>
  <modulesummary>A disk_log based handler for Logger</modulesummary>

  <description>
    <p>This is a handler for Logger that offers circular
    (wrapped) logs by using <seealso marker="disk_log"><c>disk_log</c></seealso>. 
    Multiple instances of this handler can be added to Logger, and each instance
    prints to its own disk log file, created with the name and settings specified
    in the handler configuration.</p>
    <p>The default standard handler,
    <seealso marker="logger_std_h"><c>logger_std_h</c></seealso>, can be
    replaced by a disk_log handler at startup of the Kernel application.
    See an example of this below.</p>
    <p>The handler has an overload protection mechanism that keeps the handler
    process and the Kernel application alive during  high loads of log 
    events. How overload protection works, and how to configure it, is
    described in the
    <seealso marker="logger_chapter#overload_protection"><c>User's Guide</c>
    </seealso>.</p>
    <p>To add a new instance of the disk_log handler, use
    <seealso marker="logger#add_handler-3"><c>logger:add_handler/3</c>
    </seealso>. The handler configuration argument is a map which can contain
    general configuration parameters, as documented in the
    <seealso marker="logger_chapter#handler_configuration"><c>User's Guide</c>
    </seealso>, and handler specific parameters. The specific data
    is stored in a sub map with the key <c>config</c>, and can contain the
    following parameters:</p>
    <taglist>
      <tag><c>file</c></tag>
      <item>
	<p>This is the full name of the disk log file. The option
	corresponds to the <c>name</c> property in the
	<seealso marker="disk_log#open-1"><c>dlog_option()</c></seealso>
	datatype.</p>
	<p>The value is set when the handler is added, and it can not
	  be changed in runtime.</p>
	<p>Defaults to the same name as the handler identity, in the
	  current directory.</p>
      </item>
      <tag><c>type</c></tag>
      <item>
	<p>This is the disk log type, <c>wrap</c> or <c>halt</c>. The option
	corresponds to the <c>type</c> property in the
	<seealso marker="disk_log#open-1"><c>dlog_option()</c></seealso>
	datatype.</p>
	<p>The value is set when the handler is added, and it can not
	  be changed in runtime.</p>
	<p>Defaults to <c>wrap</c>.</p>
      </item>
      <tag><c>max_no_files</c></tag>
      <item>
	<p>This is the maximum number of files that disk_log uses
	for its circular logging. The option
	corresponds to the <c>MaxNoFiles</c> element in the <c>size</c> property in the
	<seealso marker="disk_log#open-1"><c>dlog_option()</c></seealso>
	datatype.</p>
	<p>The value is set when the handler is added, and it can not
	  be changed in runtime.</p>
	<p>Defaults to <c>10</c>.</p>
	<p>The setting has no effect on a halt log.</p>
      </item>
      <tag><c>max_no_bytes</c></tag>
      <item>
	<p>This is the maximum number of bytes that is written to
	a log file before disk_log proceeds with the next file in order, or
	generates an error in case of a full halt log. The option
	corresponds to the <c>MaxNoBytes</c> element in the <c>size</c> property in the
	<seealso marker="disk_log#open-1"><c>dlog_option()</c></seealso>
	datatype.</p>
	<p>The value is set when the handler is added, and it can not
	  be changed in runtime.</p>
	<p>Defaults to <c>1048576</c> bytes for a wrap log, and
	<c>infinity</c> for a halt log.</p>
      </item>
      <tag><c>filesync_repeat_interval</c></tag>
      <item>
	<p>This value, in milliseconds, specifies how often the handler does
	a disk_log sync operation to write buffered data to disk. The handler attempts
	the operation repeatedly, but only performs a new sync if something has
	actually been logged.</p>
	<p>Defaults to <c>5000</c> milliseconds.</p>
	<p>If <c>no_repeat</c> is set as value, the repeated sync operation
	is disabled. The user can also call the
	<seealso marker="logger_disk_log_h#filesync-1"><c>filesync/1</c>
	</seealso> function to perform a disk_log sync.</p>
      </item>
    </taglist>
    <p>Other configuration parameters exist, to be used for customizing
    the overload protection behaviour. The same parameters are used both in the
    standard handler and the disk_log handler, and are documented in the
    <seealso marker="logger_chapter#overload_protection"><c>User's Guide</c>
    </seealso>.</p>
    <p>Notice that when changing the configuration of the handler in runtime, the
    disk_log options (<c>file</c>, <c>type</c>, <c>max_no_files</c>,
    <c>max_no_bytes</c>) must not be modified.</p>
    <p>Example of adding a disk_log handler:</p>
    <code type="none">
logger:add_handler(my_disk_log_h, logger_disk_log_h,
                   #{config => #{file => "./my_disk_log",
                                 type => wrap,
                                 max_no_files => 4,
                                 max_no_bytes => 10000},
                                 filesync_repeat_interval => 1000}}).
    </code>
    <p>To use the disk_log handler instead of the default standard
    handler when starting an Erlang node, change the Kernel default logger to
    use <c>logger_disk_log_h</c>. Example:</p>
    <code type="none">
erl -kernel logger '[{handler,default,logger_disk_log_h,
                      #{config => #{file => "./system_disk_log"}}}]'
    </code>
  </description>

  <funcs>

    <func>
      <name name="filesync" arity="1" clause_i="1" since="OTP 21.0"/>
      <fsummary>Writes buffered data to disk.</fsummary>
      <desc>
        <p>Write buffered data to disk.</p>
      </desc>
    </func>

  </funcs>

  <section>
    <title>See Also</title>
    <p><seealso marker="logger"><c>logger(3)</c></seealso>,
      <seealso marker="logger_std_h"><c>logger_std_h(3)</c></seealso>,
      <seealso marker="disk_log"><c>disk_log(3)</c></seealso></p>
  </section>
</erlref>