|
39 | 39 | description: A set of filter plugins in order.
|
40 | 40 | items:
|
41 | 41 | properties:
|
| 42 | + aws: |
| 43 | + description: Aws defines a Aws configuration. |
| 44 | + properties: |
| 45 | + accountID: |
| 46 | + description: The account ID for current EC2 instance.Default |
| 47 | + is false. |
| 48 | + type: boolean |
| 49 | + amiID: |
| 50 | + description: The EC2 instance image id.Default is false. |
| 51 | + type: boolean |
| 52 | + az: |
| 53 | + description: The availability zone; for example, "us-east-1a". |
| 54 | + Default is true. |
| 55 | + type: boolean |
| 56 | + ec2InstanceID: |
| 57 | + description: The EC2 instance ID.Default is true. |
| 58 | + type: boolean |
| 59 | + ec2InstanceType: |
| 60 | + description: The EC2 instance type.Default is false. |
| 61 | + type: boolean |
| 62 | + hostName: |
| 63 | + description: The hostname for current EC2 instance.Default |
| 64 | + is false. |
| 65 | + type: boolean |
| 66 | + imdsVersion: |
| 67 | + description: Specify which version of the instance metadata |
| 68 | + service to use. Valid values are 'v1' or 'v2'. |
| 69 | + enum: |
| 70 | + - v1 |
| 71 | + - v2 |
| 72 | + type: string |
| 73 | + privateIP: |
| 74 | + description: The EC2 instance private ip.Default is false. |
| 75 | + type: boolean |
| 76 | + vpcID: |
| 77 | + description: The VPC ID for current EC2 instance.Default |
| 78 | + is false. |
| 79 | + type: boolean |
| 80 | + type: object |
42 | 81 | grep:
|
43 | 82 | description: Grep defines Grep Filter configuration.
|
44 | 83 | properties:
|
@@ -324,6 +363,24 @@ spec:
|
324 | 363 | type: object
|
325 | 364 | type: array
|
326 | 365 | type: object
|
| 366 | + multiline: |
| 367 | + description: Multiline defines a Multiline configuration. |
| 368 | + properties: |
| 369 | + keyContent: |
| 370 | + description: Key name that holds the content to process. |
| 371 | + Note that a Multiline Parser definition can already specify |
| 372 | + the key_content to use, but this option allows to overwrite |
| 373 | + that value for the purpose of the filter. |
| 374 | + type: string |
| 375 | + parser: |
| 376 | + description: Specify one or multiple Multiline Parsing definitions |
| 377 | + to apply to the content. You can specify multiple multiline |
| 378 | + parsers to detect different formats by separating them |
| 379 | + with a comma. |
| 380 | + type: string |
| 381 | + required: |
| 382 | + - parser |
| 383 | + type: object |
327 | 384 | nest:
|
328 | 385 | description: Nest defines Nest Filter configuration.
|
329 | 386 | properties:
|
@@ -397,6 +454,24 @@ spec:
|
397 | 454 | type: string
|
398 | 455 | type: array
|
399 | 456 | type: object
|
| 457 | + rewriteTag: |
| 458 | + description: RewriteTag defines a RewriteTag configuration. |
| 459 | + properties: |
| 460 | + emitterName: |
| 461 | + description: When the filter emits a record under the new |
| 462 | + Tag, there is an internal emitter plugin that takes care |
| 463 | + of the job. Since this emitter expose metrics as any other |
| 464 | + component of the pipeline, you can use this property to |
| 465 | + configure an optional name for it. |
| 466 | + type: string |
| 467 | + rules: |
| 468 | + description: 'Defines the matching criteria and the format |
| 469 | + of the Tag for the matching record. The Rule format have |
| 470 | + four components: KEY REGEX NEW_TAG KEEP.' |
| 471 | + items: |
| 472 | + type: string |
| 473 | + type: array |
| 474 | + type: object |
400 | 475 | throttle:
|
401 | 476 | description: Throttle defines a Throttle configuration.
|
402 | 477 | properties:
|
@@ -424,7 +499,7 @@ spec:
|
424 | 499 | type: array
|
425 | 500 | match:
|
426 | 501 | description: A pattern to match against the tags of incoming records.
|
427 |
| - It's case sensitive and support the star (*) character as a wildcard. |
| 502 | + It's case-sensitive and support the star (*) character as a wildcard. |
428 | 503 | type: string
|
429 | 504 | matchRegex:
|
430 | 505 | description: A regular expression to match against the tags of incoming
|
|
0 commit comments