You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/_admin-guide/070_Destinations/030_Elasticsearch-http/README.md
+12
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,18 @@ HTTPS connection, as well as password- and certificate-based
13
13
authentication is supported. The content of the events is sent in JSON
14
14
format.
15
15
16
+
 **CAUTION:** When a shard fails to respond to a read request, the coordinating node sends the request to another shard copy in the same replication group. Repeated failures can result in no available shard copies.
17
+
{: .notice--warning}
18
+
19
+
To ensure fast responses, the following APIs will respond with partial results if one or more shards fail:
20
+
21
+
* Search
22
+
* Multi Search
23
+
* Bulk
24
+
* Multi Get
25
+
26
+
Responses containing partial results still provide a 200 OK HTTP status code. Shard failures are indicated by the timed_out and _shards fields of the response header.
*Description:* This option requests the compression of HTTP responses from the server. The available values are `gzip`, `deflate`, and `all` to enable all compression types. If no compression is required, use the `identity` value.
19
+
20
+
### Example: configure an http destination with compression
21
+
22
+
```config
23
+
destination d_http_compressed{
24
+
http(url("127.0.0.1:80"),
25
+
content-compression("deflate"),
26
+
accept-encoding("all"));
27
+
};
28
+
```
29
+
13
30
{% include doc/admin-guide/options/batch-bytes.md %}
14
31
15
32
{% include doc/admin-guide/http-batch.md %}
@@ -59,6 +76,23 @@ version 3.18 and later.
59
76
60
77
{% include doc/admin-guide/options/cert-file.md %}
*Description:* This option requests {{ site.product.short_name }} to compress sent messages. The available values are `gzip`, `deflate`, and `all` to enable all compression types. If no compression is required, use the `identity` value.
85
+
86
+
### Example: configure an http destination with compression
87
+
88
+
```config
89
+
destination d_http_compressed{
90
+
http(url("127.0.0.1:80"),
91
+
content-compression("deflate"),
92
+
accept-encoding("all"));
93
+
};
94
+
```
95
+
62
96
{% include doc/admin-guide/tls-block.md %}
63
97
64
98
{% include doc/admin-guide/dedicated-tls-options.md %}
Copy file name to clipboardExpand all lines: doc/_admin-guide/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: syslog-ng Open Source Edition Administration Guides
3
3
id: adm-guide
4
4
description: >-
5
-
Welcome to the {{ site.product.name }} {{ site.github.latest_release.name | remove: '.tar.gz' | remove: 'syslog-ng-'}} Administration Guide. This document describes how to configure and manage {{ site.product.name }} ({{ site.product.short_name }}). Background information for the technology and concepts used by the product is also discussed.
5
+
Welcome to the {{ site.product.name }} 4.8.1 Administration Guide. This document describes how to configure and manage {{ site.product.name }} ({{ site.product.short_name }}). Background information for the technology and concepts used by the product is also discussed.
Copy file name to clipboardExpand all lines: doc/_dev-guide/chapter_5/section_7.md
+1
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@ guidelines the following:
20
20
for syslog-ng. Please try to follow the existing conventions.
21
21
4. Always add a `Signed-off-by` tag to the end of **every** commit
22
22
message you submit.
23
+
Signing off on commits enables users to affirm that a commit complies with the rules and licensing of a repository. This, in the case of {{ site.product.short_name }}, means that you accept our coding and contribution standards described in the Contribution section, and accept that your code will be published with a `GPLv2` license.
23
24
5. Always create a separate branch for the pull request, forked off
24
25
from the appropriate {{ site.product.short_name }} branch.
25
26
6. If your patch should be applied to multiple branches, submit
0 commit comments