@@ -14,9 +14,9 @@ base: components: sinks: amqp: configuration: {
14
14
description : """
15
15
Whether or not end-to-end acknowledgements are enabled.
16
16
17
- When enabled for a sink, any source connected to that sink where the source supports
18
- end-to-end acknowledgements as well, waits for events to be acknowledged by **all
19
- connected** sinks before acknowledging them at the source.
17
+ When enabled for a sink, any source that supports end-to-end
18
+ acknowledgements that is connected to that sink waits for events
19
+ to be acknowledged by **all connected sinks** before acknowledging them at the source.
20
20
21
21
Enabling or disabling acknowledgements at the sink level takes precedence over any global
22
22
[`acknowledgements`][global_acks] configuration.
@@ -90,7 +90,7 @@ base: components: sinks: amqp: configuration: {
90
90
}
91
91
device_version : {
92
92
description : """
93
- Identifies the version of the problem. In combination with device product and vendor, it composes the unique id of the device that sends messages.
93
+ Identifies the version of the problem. The combination of the device product, vendor and this value make up the unique id of the device that sends messages.
94
94
The value length must be less than or equal to 31.
95
95
"""
96
96
required : true
@@ -123,16 +123,16 @@ base: components: sinks: amqp: configuration: {
123
123
Reflects importance of the event.
124
124
125
125
It must point to a number from 0 to 10.
126
- 0 = Lowest , 10 = Highest .
127
- Equals to "cef.severity" by default.
126
+ 0 = lowest_importance , 10 = highest_importance .
127
+ Set to "cef.severity" by default.
128
128
"""
129
129
required : true
130
130
type : string : {}
131
131
}
132
132
version : {
133
133
description : """
134
134
CEF Version. Can be either 0 or 1.
135
- Equals to "0" by default.
135
+ Set to "0" by default.
136
136
"""
137
137
required : true
138
138
type : string : enum : {
@@ -166,11 +166,11 @@ base: components: sinks: amqp: configuration: {
166
166
Vector's encoder currently adheres more strictly to the GELF spec, with
167
167
the exception that some characters such as `@` are allowed in field names.
168
168
169
- Other GELF codecs such as Loki's, use a [Go SDK][implementation] that is maintained
170
- by Graylog, and is much more relaxed than the GELF spec.
169
+ Other GELF codecs, such as Loki's, use a [Go SDK][implementation] that is maintained
170
+ by Graylog and is much more relaxed than the GELF spec.
171
171
172
172
Going forward, Vector will use that [Go SDK][implementation] as the reference implementation, which means
173
- the codec may continue to relax the enforcement of specification.
173
+ the codec might continue to relax the enforcement of the specification.
174
174
175
175
[gelf]: https://docs.graylog.org/docs/gelf
176
176
[implementation]: https://github.com/Graylog2/go-gelf/blob/v2/gelf/reader.go
@@ -234,8 +234,8 @@ base: components: sinks: amqp: configuration: {
234
234
type : object : options : {
235
235
capacity : {
236
236
description : """
237
- Set the capacity (in bytes) of the internal buffer used in the CSV writer.
238
- This defaults to a reasonable setting .
237
+ Sets the capacity (in bytes) of the internal buffer used in the CSV writer.
238
+ This defaults to 8KB .
239
239
"""
240
240
required : false
241
241
type : uint : default : 8192
@@ -247,9 +247,9 @@ base: components: sinks: amqp: configuration: {
247
247
}
248
248
double_quote : {
249
249
description : """
250
- Enable double quote escapes.
250
+ Enables double quote escapes.
251
251
252
- This is enabled by default, but it may be disabled . When disabled, quotes in
252
+ This is enabled by default, but you can disable it . When disabled, quotes in
253
253
field data are escaped instead of doubled.
254
254
"""
255
255
required : false
@@ -262,20 +262,20 @@ base: components: sinks: amqp: configuration: {
262
262
In some variants of CSV, quotes are escaped using a special escape character
263
263
like \\ (instead of escaping quotes by doubling them).
264
264
265
- To use this, `double_quotes` needs to be disabled as well otherwise it is ignored.
265
+ To use this, `double_quotes` needs to be disabled as well; otherwise, this setting is ignored.
266
266
"""
267
267
required : false
268
268
type : ascii_char : default : " \" "
269
269
}
270
270
fields : {
271
271
description : """
272
- Configures the fields that will be encoded, as well as the order in which they
272
+ Configures the fields that are encoded, as well as the order in which they
273
273
appear in the output.
274
274
275
- If a field is not present in the event, the output will be an empty string.
275
+ If a field is not present in the event, the output for that field is an empty string.
276
276
277
- Values of type `Array`, `Object`, and `Regex` are not supported and the
278
- output will be an empty string.
277
+ Values of type `Array`, `Object`, and `Regex` are not supported, and the
278
+ output for any of these types is an empty string.
279
279
"""
280
280
required : true
281
281
type : array : items : type : string : {}
@@ -301,8 +301,8 @@ base: components: sinks: amqp: configuration: {
301
301
never : " Never writes quotes, even if it produces invalid CSV data. "
302
302
non_numeric : """
303
303
Puts quotes around all fields that are non-numeric.
304
- Namely, when writing a field that does not parse as a valid float or integer,
305
- then quotes are used even if they aren't strictly necessary.
304
+ This means that when writing a field that does not parse as a valid float or integer,
305
+ quotes are used even if they aren't strictly necessary.
306
306
"""
307
307
}
308
308
}
@@ -430,7 +430,7 @@ base: components: sinks: amqp: configuration: {
430
430
description : """
431
431
Sets the list of supported ALPN protocols.
432
432
433
- Declare the supported ALPN protocols, which are used during negotiation with peer. They are prioritized in the order
433
+ Declare the supported ALPN protocols, which are used during negotiation with a peer. They are prioritized in the order
434
434
that they are defined.
435
435
"""
436
436
required : false
@@ -452,7 +452,7 @@ base: components: sinks: amqp: configuration: {
452
452
The certificate must be in DER, PEM (X.509), or PKCS#12 format. Additionally, the certificate can be provided as
453
453
an inline string in PEM format.
454
454
455
- If this is set, and is not a PKCS#12 archive, `key_file` must also be set.
455
+ If this is set _and_ is not a PKCS#12 archive, `key_file` must also be set.
456
456
"""
457
457
required : false
458
458
type : string : examples : [" /path/to/host_certificate.crt " ]
@@ -493,7 +493,7 @@ base: components: sinks: amqp: configuration: {
493
493
If enabled, certificates must not be expired and must be issued by a trusted
494
494
issuer. This verification operates in a hierarchical manner, checking that the leaf certificate (the
495
495
certificate presented by the client/server) is not only valid, but that the issuer of that certificate is also valid, and
496
- so on until the verification process reaches a root certificate.
496
+ so on, until the verification process reaches a root certificate.
497
497
498
498
Do NOT set this to `false` unless you understand the risks of not verifying the validity of certificates.
499
499
"""
0 commit comments