Synadia Connect
Opensearch
NAME | RUNTIME | TYPE | VERSION |
---|---|---|---|
opensearch | wombat | sink | latest |
Publishes messages into an Elasticsearch index.
If the index does not exist then it is created with a dynamic mapping.
Configuration
Name | Type | Optional | Secret | Description |
---|---|---|---|---|
urls | []string | no | no | A list of URLs to connect to. If an item of the list contains commas it will be expanded into multiple URLs. |
index | string | no | no | The index to place messages. |
action | string | no | no | The action to take on the document. This field must resolve to one of the following action types: index , update or delete . |
id | string | no | no | The ID for indexed messages. Interpolation should be used in order to create a unique ID for each message. |
pipeline | string | yes | no | An optional pipeline id to preprocess incoming documents. The value defaults to "" . |
routing | string | yes | no | The routing key to use for the document. The value defaults to "" . |
tls | tls | no | no | Custom TLS settings can be used to override system defaults. |
max_in_flight | int | yes | no | The maximum number of messages to have in flight at a given time. Increase this to improve throughput. The value defaults to 64 . |
basic_auth | basic_auth | no | no | Allows you to specify basic authentication. |
batching | batching | no | no | Allows you to configure a batching policy. |
aws | aws | no | no | Enables and customises connectivity to Amazon Elastic Service. |
TLS Configuration
Name | Type | Optional | Secret | Description |
---|---|---|---|---|
enabled | bool | yes | no | Whether custom TLS settings are enabled. The value defaults to false . |
skip_cert_verify | bool | yes | no | Whether to skip server side certificate verification. The value defaults to false . |
enable_renegotiation | bool | yes | no | Whether to allow the remote server to repeatedly request renegotiation. |
Enable this option if you're seeing the error message local error: tls: no renegotiation . The value defaults to false . | ||||
root_cas | string | yes | yes | An optional root certificate authority to use. |
This is a string, representing a certificate chain from the parent trusted root certificate, | ||||
to possible intermediate signing certificates, to the host certificate. The value defaults to "" . | ||||
client_certs | []client_certs | yes | no | A list of client certificates to use. . The value defaults to [] . |
Basic Auth
Name | Type | Optional | Secret | Description |
---|---|---|---|---|
enabled | bool | yes | no | Whether to use basic authentication in requests. The value defaults to false . |
username | string | yes | no | A username to authenticate as. The value defaults to "" . |
password | string | yes | yes | A password to authenticate with. The value defaults to "" . |
Batching
Name | Type | Optional | Secret | Description |
---|---|---|---|---|
count | int | yes | no | A number of messages at which the batch should be flushed. If 0 disables count based batching. The value defaults to 0 . |
byte_size | int | yes | no | An amount of bytes at which the batch should be flushed. If 0 disables size based batching. The value defaults to 0 . |
period | string | yes | no | A period in which an incomplete batch should be flushed regardless of its size. The value defaults to "" . |
check | string | yes | no | A Bloblang query that should return a boolean value indicating whether a message should end a batch. The value defaults to "" . |
AWS
Name | Type | Optional | Secret | Description |
---|---|---|---|---|
enabled | bool | yes | no | Whether to connect to Amazon Elastic Service. The value defaults to false . |
region | string | yes | no | The AWS region to target. The value defaults to "" . |
endpoint | string | yes | no | Allows you to specify a custom endpoint for the AWS API. The value defaults to "" . |
credentials | credentials | no | no | Optional manual configuration of AWS credentials to use. More information can be found in the AWS Guide. |