Skip to content

Commit

Permalink
Added file() and wildcard-file() following explanations
Browse files Browse the repository at this point in the history
Added the new monitor-freq() option description
Signed-off-by: Hofi <[email protected]>
  • Loading branch information
HofiOne committed Jun 29, 2024
1 parent 42151f5 commit 4d96035
Show file tree
Hide file tree
Showing 10 changed files with 203 additions and 12 deletions.
4 changes: 3 additions & 1 deletion _data/navigation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,10 @@ admin-guide-nav:
subnav:
- title: "Notes on reading kernel messages"
url: /admin-guide/060_Sources/020_File/000_Notes_on_reading_kernel_messages
- title: "How file sources are followed"
url: /admin-guide/060_Sources/020_File/001_File_following
- title: "file() source options"
url: /admin-guide/060_Sources/020_File/001_File_source_options
url: /admin-guide/060_Sources/020_File/002_File_source_options
- title: "Arr logs"
url: /admin-guide/060_Sources/025_Arr_logs/README
subnav:
Expand Down
9 changes: 6 additions & 3 deletions _includes/doc/admin-guide/options/follow-freq.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@

*Description:* Indicates that the source should be checked periodically.
This is useful for files which always indicate readability, even though
no new lines were appended. If this value is higher than zero, syslog-ng
will not attempt to use poll() on the file, but checks whether the file
changed every time the follow-freq() interval (in seconds) has elapsed.
no new lines were appended (e.g. regular file system files). If this value
is higher than zero, syslog-ng will not attempt to use ivikys file change
notification methods on the file (poll(), epoll(), etc.), but checks whether
the file changed every time the follow-freq() interval (in seconds) has elapsed.\
Floating-point numbers (for example, **1.5**) can be used as well.

{% include doc/admin-guide/warnings/file-source-follow-warning.md %}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
![]({{ site.baseurl}}/assets/images/caution.png) **CAUTION:** As the follow-freq(), the monitor-method(), and the monitor-freq() options could have performance penalty effects, it is important to understand how the file and directory monitoring operates depending on these values. For details, refer to How content changes are followed in file() and wildcard-file() sources.
{: .notice--warning}
2 changes: 1 addition & 1 deletion _layouts/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
{% if page.title %}
{% comment %}<!-- <h1 id="page-title" class="page__title p-name {% if page.subtitle == null and page.description == null %} page__title_decoration{% endif %}" itemprop="headline"> -->{% endcomment %}
<h1 id="page-title" class="page__title p-name page__title_decoration" itemprop="headline">
<a href="{{ page.url | absolute_url }}" class="u-url nav-link" itemprop="url">{{ page.title | liquify | markdownify | remove: "<p>" | remove: "</p>" }}</a>
<a href="{{ page.url | relative_url }}" class="u-url nav-link" itemprop="url">{{ page.title | liquify | markdownify | remove: "<p>" | remove: "</p>" }}</a>
</h1>
{% endif %}
{% comment %}<!--
Expand Down
3 changes: 3 additions & 0 deletions _sass/minimal-mistakes/minimal-mistakes/_tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ th {
td {
padding: 0.5em;
border-bottom: 1px solid mix(#000, $border-color, 25%);
&.right-edged-col {
border-right: 1px solid mix(#000, $border-color, 25%);
}
}

tr,
Expand Down
164 changes: 164 additions & 0 deletions doc/_admin-guide/060_Sources/020_File/001_File_following.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,164 @@
---
title: How content changes are followed in file() and wildcard-file() sources
short_title: How file sources are followed
id: adm-src-wild-follow
description: >-
The {{ site.product.short_name }} application can use various methods to detect changes
in the followed file() and wildcard-file() sources. Under the hood, two different change
watchers operate: one for detecting changes in the followed directories and one for
monitoring changes in the watched files.
---

The detection method for directory changes can be controlled via monitor-method(). If the method is `poll`, {{ site.product.short_name }} will set up an (ivykis) timer that periodically checks and compares the content of the given directory at the frequency specified by monitor-freq(). This periodic polling can be resource-intensive (mainly CPU), so selecting the proper value for monitor-freq() is important. This is not an issue on Linux, where you can use `inotify` for monitor-method(), which automatically notifies {{ site.product.short_name }} about changes with no significant resource usage impact.

**NOTE:** For macOS and FreeBSD, a `kqueue` based implementation will be available in the near future, offering similar performance to `inotify` on Linux. Stay tuned!
{: .notice--info}

Detecting file content changes involves more factors that can affect resource usage and overall performance. {{ site.product.short_name }} uses two main methods to monitor file content changes.

The first method is automatically selected if the follow-freq() option has a value greater than 0. It works like the directory monitoring `poll` monitor-method() and uses an (ivykis) timer with the frequency of follow-freq(). It tries to detect changes in the file content (as well as state, file deletion, and moves) each time the timer fires. Similar to directory change monitoring, this process can be resource-intensive, so you should find the proper setting to balance performance, resource usage, and fault tolerance (such as avoiding log message loss).

The second method is activated if the follow-freq() option is set to 0. It uses ivykis poll methods, sometimes resembling the poll method for directory change watching described above (with its performance penalties), but often working similarly to the `inotify` version (with seamless performance).

The following table shows which method is selected in different cases.

<table border="0" cellspacing="0" cellpadding="0" width="1397">
<tr>
<td width="99" class="right-edged-col">
<p align="center">follow-freq()</p>
</td>
<td width="200" colspan="2" class="right-edged-col">
<p align="center">file follow method</p>
</td>
<td width="151" class="right-edged-col">
<p align="center">linux</p>
</td>
<td width="152" class="right-edged-col">
<p align="center">macOS, FreeBSD</p>
</td>
<td width="153">
<p align="center">Solaris</p>
</td>
</tr>
<tr>
<td width="99" rowspan="6" class="right-edged-col">
<p align="center">0</p>
</td>
<td width="150" rowspan="6" class="right-edged-col">
<p align="center">ivykis poll</p>
</td>
<td width="152" class="right-edged-col">
<p align="center">port-timer, port</p>
</td>
<td width="151" class="right-edged-col">
<p align="center">n.a.</p>
</td>
<td width="152" class="right-edged-col">
<p align="center">n.a.</p>
</td>
<td width="153">
<p align="center">should work<br>(not tested yet)</p>
</td>
</tr>
<tr>
<td width="152" class="right-edged-col">
<p align="center">dev-poll</p>
</td>
<td width="151" class="right-edged-col">
<p align="center">n.a.</p>
</td>
<td width="152" class="right-edged-col">
<p align="center">n.a.</p>
</td>
<td width="153">
<p align="center">should work<br>(not tested yet)</p>
</td>
</tr>
<tr>
<td width="152" class="right-edged-col">
<p align="center">epoll-timer, epoll</p>
</td>
<td width="151" class="right-edged-col">
<p align="center">does not work </p>
</td>
<td width="152" class="right-edged-col">
<p align="center">n.a.</p>
</td>
<td width="153">
<p align="center">should work<br>(not tested yet)</p>
</td>
</tr>
<tr>
<td width="152" class="right-edged-col">
<p align="center">kqueue</p>
</td>
<td width="151" class="right-edged-col">
<p align="center">n.a.</p>
</td>
<td width="152" class="right-edged-col">
<p align="center">works</p>
</td>
<td width="153">
<p align="center">n.a.</p>
</td>
</tr>
<tr>
<td width="152" class="right-edged-col">
<p align="center">ppoll</p>
</td>
<td width="151" class="right-edged-col">
<p align="center">works, but always signals readability</p>
</td>
<td width="152" class="right-edged-col">
<p align="center">n.a.</p>
</td>
<td width="153">
<p align="center">should work<br>(not tested yet)</p>
</td>
</tr>
<tr>
<td width="152" class="right-edged-col">
<p align="center">poll</p>
</td>
<td width="151" class="right-edged-col">
<p align="center">works, but always signals readability</p>
</td>
<td width="152" class="right-edged-col">
<p align="center">works, but always signals readability</p>
</td>
<td width="153">
<p align="center">works, but always signals readability</p>
</td>
</tr>
<tr>
<td width="99" rowspan="3" class="right-edged-col">
<p align="center">&gt; 0</p>
</td>
<td width="150" colspan="2" rowspan="3" class="right-edged-col">
<p align="center">syslog-ng poll<br>using ivykis timer with timer freq set to follow-freq() value</p>
</td>
<td width="151" rowspan="3" class="right-edged-col">
<p align="center">works</p>
</td>
<td width="152" rowspan="3" class="right-edged-col">
<p align="center">works</p>
</td>
<td width="153">
<p align="center">works</p>
</td>
</tr>
</table>

A bit more detail about the notation in the platform columns and what they really mean:

`n.a.` - Means that the feature is not supported on the given platform by default, which has a significant impact on how the final ivykis poll method is selected. Ivykis tries to set up (at initialization time) the method to be used in the order enumerated in the table above. If an option is `n.a.` (determined at build time), then the next option will be used automatically. The first available option will be used, and if it does not work on the given platform (see `does not work` below), then {{ site.product.short_name }} will stop that file source with an error. This can be controlled using the `IV_EXCLUDE_POLL_METHOD` environment variable. Methods enumerated in it will be excluded from the ivykis initialization flow, and the next available (and not excluded) one will be used. The strings that can be used in `IV_EXCLUDE_POLL_METHOD` are `port-timer port dev_poll epoll-timerfd epoll kqueue ppoll poll` in the same order as in the table.\
e.g., on Linux you should use `IV_EXCLUDE_POLL_METHOD="epoll-timerfd epoll"` to force the usage of the `ppoll` method, as `port-timer port dev_poll` are not available, and `epoll-timerfd epoll` are not working currently. However, note that currently `ppoll` and `poll` are the only working options on Linux, and they are far from optimal, unlike on BSD-based systems like macOS, where the default `kqueue` is a perfect option to use.

**NOTE:** We are planning to add an `inotify` or similar-based solution to ivykis that could perform similarly to `kqueue`. Stay tuned!
{: .notice--info}

`works` - Means it is tested and works seamlessly (based on our tests).

`works, but always signals readability` - Means that the method is available on the given platform, but it is primarily designed for sockets, pipes, and similar uses, not for regular files. For regular files, it is always triggered (because regular files are always readable), behaving similarly to the `poll` method of directory monitoring with all of its disadvantages. Moreover, it could lead to even higher resource consumption (mainly CPU load) because follow-freq() does not control the frequency of the triggered internal file checks, which could occur hundreds or thousands of times per second.

`does not work` - Means that the method is available on the given platform but currently does not work as expected for various reasons.
2 changes: 2 additions & 0 deletions doc/_admin-guide/060_Sources/020_File/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ The file driver has a single required parameter specifying the file to
open. If you want to use wildcards in the filename, use the [[wildcard-file() source|adm-src-wild]].
For the list of available optional parameters, see file() source options.

{% include doc/admin-guide/warnings/file-source-follow-warning.md %}

**Declaration**

```config
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,16 +105,28 @@ monitor. If the wildcard-file source matches more files than the value
of the max-files() option, it is random which files will {{ site.product.short_name }}
actually monitor. The default value of max-files() is 100.

## monitor-freq()

|Type: | number |
|Default: | value of follow-freq() |

*Description:* Indicates how frequently changes to the source file creation, move, or deletion should be checked if monitor-method() is set to `poll`.\
Floating-point numbers (for example, **1.5**) can be used as well. Please note, for backward compatibility reasons, the default value of monitor-freq() is equal to the value of follow-freq().

{% include doc/admin-guide/warnings/file-source-follow-warning.md %}

## monitor-method()

|Accepted values:| auto \| inotify \| poll|
|Default:| auto|
|Accepted values:| auto \| inotify \| poll|
|Default: | auto |

*Description:* If the platform supports inotify, {{ site.product.short_name }} uses it
automatically to detect changes to the source files. If inotify is not
available, {{ site.product.short_name }} polls the files as set in the follow-freq()
option. To force {{ site.product.short_name }} poll the files even if inotify is
available, set this option to **poll**.
automatically to detect creation, move, or deletion of the source files. If inotify is not
available, {{ site.product.short_name }} polls the above mentioned file changes as set in
the monitor-freq() option. To force {{ site.product.short_name }} poll the file changes even if
inotify is available, set this option to **poll**.

{% include doc/admin-guide/warnings/file-source-follow-warning.md %}

{% include doc/admin-guide/options/multi-line-garbage.md %}

Expand Down Expand Up @@ -154,8 +166,9 @@ source s_file_subdirectories {
base-dir("/var/log")
filename-pattern("*.log")
recursive(yes)
monitor-freq(0.5)
follow-freq(1)
log-fetch-limit(100)
log-fetch-limit(200)
);
};
```
Expand Down
2 changes: 2 additions & 0 deletions doc/_admin-guide/060_Sources/030_Wildcard-file/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ persist file depends on the package you installed {{ site.product.short_name }}
typically it is /var/lib/syslog-ng/syslog-ng.persist or
/var/lib/syslog-ng/syslog-ng.persist.

{% include doc/admin-guide/warnings/file-source-follow-warning.md %}

**Declaration**

```config
Expand Down

0 comments on commit 4d96035

Please sign in to comment.