azure-blob
Send data to a Microsoft Azure Storage Blob (Block Storage)
Field Name | Description | Type | Default |
---|---|---|---|
container-name | The storage service container for created blobs | string | - |
blob-name | The name for the output blob, this will be suffixed by a GUID by default | string | - |
disable-blob-name-guid | Do not append a GUID to the output blob name | bool | false |
storage-account | The Storage Account Name to be used (credential) | string | - |
storage-master-key | The Storage Master Key to be used (credential) | string | - |
retry | For operations that could potentially fail | Retry | - |
batch | Maximum number of events in an output batch. If 'document' send on end of document | integer or the 'document' | - |
timeout | Interval after which the batch is sent, to keep throughput going | interval | 100ms |
header | Put a header line before the batch | templated text | - |
footer | Put a header line after the last line of the batch | templated text | - |
use-document-marker | Enrich the pipe metadata with a document marker (for document handling in batch mode) | bool | false |
content-type | Set the created blob the the following content-type | string | text/plain |
input-field | Send only the content of the specified field to the blob | field | - |
container-name
The storage service container for created blobs
Type: string
blob-name
The name for the output blob, this will be suffixed by a GUID by default
Type: string
disable-blob-name-guid
Do not append a GUID to the output blob name
Type: bool
storage-account
The Storage Account Name to be used (credential)
Type: string
storage-master-key
The Storage Master Key to be used (credential)
Type: string
retry
For operations that could potentially fail
Type: Retry
Field Name | Description | Type | Default |
---|---|---|---|
count | How many attempts to make before declaring failure | integer | - |
pause | How long to pause before re-trying | duration | - |
forever | Keep trying until success is declared | bool | false |
count
How many attempts to make before declaring failure
Type: integer
Example
action:
exec:
command: echo 'one two'
retry:
count: 1
output:
{"_raw":"one two"}
pause
How long to pause before re-trying
Accepts human-friendly formats, like 1m (for 1 minute) and 4h (for 4 hours)
Type: duration
Example
action:
exec:
command: echo 'one two'
retry:
count: 6
pause: 10s
output:
{"_raw":"one two"}
forever
Keep trying until success is declared
Accepts human-friendly formats, like 1m (for 1 minute) and 4h (for 4 hours)
Type: bool
Example
action:
exec:
command: echo 'one two'
retry:
forever: true
output:
{"_raw":"one two"}
batch
Maximum number of events in an output batch. If 'document' send on end of document
Type: integer or the 'document'
timeout
Interval after which the batch is sent, to keep throughput going
Type: interval
header
Put a header line before the batch
Type: templated text
footer
Put a header line after the last line of the batch
Type: templated text
use-document-marker
Enrich the pipe metadata with a document marker (for document handling in batch mode)
Type: bool
content-type
Set the created blob the the following content-type
Type: string
input-field
Send only the content of the specified field to the blob
Type: field