Skip to content

Commit e88488d

Browse files
Document logging configuration (#3397)
* Document logging configuration * Document default log_nonblock values for different loggers Resolves #1974 Resolves #2242
1 parent 2acf88e commit e88488d

File tree

4 files changed

+241
-237
lines changed

4 files changed

+241
-237
lines changed
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
.. _cfg_feedback:
2+
3+
* :ref:`feedback_enabled <cfg_logging-feedback_enabled>`
4+
* :ref:`feedback_host <cfg_logging-feedback_host>`
5+
* :ref:`feedback_interval <cfg_logging-feedback_interval>`
6+
7+
By default, a Tarantool daemon sends a small packet
8+
once per hour, to ``https://feedback.tarantool.io``.
9+
The packet contains three values from :ref:`box.info <box_introspection-box_info>`:
10+
``box.info.version``, ``box.info.uuid``, and ``box.info.cluster_uuid``.
11+
By changing the feedback configuration parameters, users can
12+
adjust or turn off this feature.
13+
14+
.. _cfg_logging-feedback_enabled:
15+
16+
.. confval:: feedback_enabled
17+
18+
Since version 1.10.1. Whether to send feedback.
19+
20+
If this is set to ``true``, feedback will be sent as described above.
21+
If this is set to ``false``, no feedback will be sent.
22+
23+
| Type: boolean
24+
| Default: true
25+
| Environment variable: TT_FEEDBACK_ENABLED
26+
| Dynamic: **yes**
27+
28+
.. _cfg_logging-feedback_host:
29+
30+
.. confval:: feedback_host
31+
32+
Since version 1.10.1. The address to which the packet is sent.
33+
Usually the recipient is Tarantool, but it can be any URL.
34+
35+
| Type: string
36+
| Default: ``https://feedback.tarantool.io``
37+
| Environment variable: TT_FEEDBACK_HOST
38+
| Dynamic: **yes**
39+
40+
.. _cfg_logging-feedback_interval:
41+
42+
.. confval:: feedback_interval
43+
44+
Since version 1.10.1. The number of seconds between sendings, usually 3600 (1 hour).
45+
46+
| Type: float
47+
| Default: 3600
48+
| Environment variable: TT_FEEDBACK_INTERVAL
49+
| Dynamic: **yes**

0 commit comments

Comments
 (0)