Redis
Collect observability data from Redis.
Configuration
Example configurations
{
"sources": {
"my_source_id": {
"type": "redis",
"key": "vector",
"url": "redis://127.0.0.1:6379/0"
}
}
}
[sources.my_source_id]
type = "redis"
key = "vector"
url = "redis://127.0.0.1:6379/0"
---
sources:
my_source_id:
type: redis
key: vector
url: redis://127.0.0.1:6379/0
{
"sources": {
"my_source_id": {
"type": "redis",
"data_type": "list",
"key": "vector",
"redis_key": "redis_key",
"url": "redis://127.0.0.1:6379/0"
}
}
}
[sources.my_source_id]
type = "redis"
data_type = "list"
key = "vector"
redis_key = "redis_key"
url = "redis://127.0.0.1:6379/0"
---
sources:
my_source_id:
type: redis
data_type: list
key: vector
redis_key: redis_key
url: redis://127.0.0.1:6379/0
data_type
optional string literal enumlist
or channel
) to use.Option | Description |
---|---|
channel | The This is based on Redis' Pub/Sub capabilities. |
list | The list data type. |
list
decoding
optional objectdecoding.codec
optional string literal enumOption | Description |
---|---|
bytes | Uses the raw bytes as-is. |
gelf | Decodes the raw bytes as a GELF message. |
json | Decodes the raw bytes as JSON. |
native | Decodes the raw bytes as Vector’s native Protocol Buffers format. This codec is experimental. |
native_json | Decodes the raw bytes as Vector’s native JSON format. This codec is experimental. |
syslog | Decodes the raw bytes as a Syslog message. Decodes either as the RFC 3164-style format (“old” style) or the RFC 5424-style format (“new” style, includes structured data). |
bytes
framing
optional objectFraming configuration.
Framing handles how events are separated when encoded in a raw byte form, where each event is a frame that must be prefixed, or delimited, in a way that marks where an event begins and ends within the byte stream.
framing.character_delimited
required objectmethod = "character_delimited"
framing.character_delimited.delimiter
required uintframing.character_delimited.max_length
optional uintThe maximum length of the byte buffer.
This length does not include the trailing delimiter.
By default, there is no maximum length enforced. If events are malformed, this can lead to additional resource usage as events continue to be buffered in memory, and can potentially lead to memory exhaustion in extreme cases.
If there is a risk of processing malformed data, such as logs with user-controlled input, consider setting the maximum length to a reasonably large value as a safety net. This ensures that processing is not actually unbounded.
framing.method
optional string literal enumOption | Description |
---|---|
bytes | Byte frames are passed through as-is according to the underlying I/O boundaries (for example, split between messages or stream segments). |
character_delimited | Byte frames which are delimited by a chosen character. |
length_delimited | Byte frames which are prefixed by an unsigned big-endian 32-bit integer indicating the length. |
newline_delimited | Byte frames which are delimited by a newline character. |
octet_counting | Byte frames according to the octet counting format. |
bytes
framing.newline_delimited
optional objectmethod = "newline_delimited"
framing.newline_delimited.max_length
optional uintThe maximum length of the byte buffer.
This length does not include the trailing delimiter.
By default, there is no maximum length enforced. If events are malformed, this can lead to additional resource usage as events continue to be buffered in memory, and can potentially lead to memory exhaustion in extreme cases.
If there is a risk of processing malformed data, such as logs with user-controlled input, consider setting the maximum length to a reasonably large value as a safety net. This ensures that processing is not actually unbounded.
framing.octet_counting
optional objectmethod = "octet_counting"
framing.octet_counting.max_length
optional uintlist
optional objectlist
data type.list.method
required string literal enumlist
data type.Option | Description |
---|---|
lpop | Pop messages from the head of the list. |
rpop | Pop messages from the tail of the list. |
redis_key
optional string literalSets the name of the log field to use to add the key to each event.
The value is the Redis key that the event was read from.
By default, this is not set and the field is not automatically added.
url
required string literalThe Redis URL to connect to.
The URL must take the form of protocol://server:port/db
where the protocol
can either be redis
or rediss
for connections secured using TLS.
Outputs
<component_id>
Output Data
Logs
Record
gethostname
command.my-host.local
2019-02-13T19:48:34+00:00 [info] Started GET "/" for 127.0.0.1
some_key
redis
2020-10-10T17:07:36.452332Z
Telemetry
Metrics
linkcomponent_sent_event_bytes_total
countercomponent_id
instead. The value is the same as component_id
.component_sent_events_total
countercomponent_id
instead. The value is the same as component_id
.events_in_total
countercomponent_received_events_total
instead.component_id
instead. The value is the same as component_id
.events_out_total
countercomponent_sent_events_total
instead.component_id
instead. The value is the same as component_id
.processed_bytes_total
countercomponent_id
instead. The value is the same as component_id
.processing_errors_total
countercomponent_errors_total
.component_id
instead. The value is the same as component_id
.source_lag_time_seconds
histogramcomponent_id
instead. The value is the same as component_id
.How it works
redis-rs
redis
source uses redis-rs
under the hood, which is a high level Redis library
for Rust. It provides convenient access to all Redis functionality through a very flexible but low-level
API.