prometheus.exporter.redis
The prometheus.exporter.redis component embeds the redis_exporter for collecting metrics from a Redis database.
Usage
prometheus.exporter.redis "<LABEL>" {
redis_addr = "<REDIS_ADDRESS>"
}Arguments
You can use the following arguments with prometheus.exporter.redis:
If redis_password_file is defined, it takes precedence over redis_password.
When check_key_groups isn’t set, no key groups are made.
The check_key_groups_batch_size argument name reflects key groups for backwards compatibility, but applies to both key and key groups.
The script_path argument may also be specified as a comma-separated string of paths, though it’s encouraged to use script_paths when using multiple Lua scripts.
Any leftover key groups beyond max_distinct_key_groups are aggregated in the ‘overflow’ bucket.
The is_cluster argument must be set to true when connecting to a Redis cluster and using either of the check_keys and check_single_keys arguments.
Note
Setting
export_client_portincreases the cardinality of all Redis metrics.
Blocks
The prometheus.exporter.redis component doesn’t support any blocks. You can configure this component with arguments.
Exported fields
The following fields are exported and can be referenced by other components.
For example, the targets can either be passed to a discovery.relabel component to rewrite the targets’ label sets or to a prometheus.scrape component that collects the exposed metrics.
The exported targets use the configured in-memory traffic address specified by the run command.
Component health
prometheus.exporter.redis is only reported as unhealthy if given an invalid configuration.
In those cases, exported fields retain their last healthy values.
Debug information
prometheus.exporter.redis doesn’t expose any component-specific debug information.
Debug metrics
prometheus.exporter.redis doesn’t expose any component-specific debug metrics.
Example
This example uses a prometheus.scrape component to collect metrics from prometheus.exporter.redis:
prometheus.exporter.redis "example" {
redis_addr = "localhost:6379"
}
// Configure a prometheus.scrape component to collect Redis metrics.
prometheus.scrape "demo" {
targets = prometheus.exporter.redis.example.targets
forward_to = [prometheus.remote_write.demo.receiver]
}
prometheus.remote_write "demo" {
endpoint {
url = "<PROMETHEUS_REMOTE_WRITE_URL>"
basic_auth {
username = "<USERNAME>"
password = "<PASSWORD>"
}
}
}Replace the following:
<PROMETHEUS_REMOTE_WRITE_URL>: The URL of the Prometheusremote_writecompatible server to send metrics to.<USERNAME>: The username to use for authentication to theremote_writeAPI.<PASSWORD>: The password to use for authentication to theremote_writeAPI.
Compatible components
prometheus.exporter.redis has exports that can be consumed by the following components:
- Components that consume Targets
Note
Connecting some components may not be sensible or components may require further configuration to make the connection work correctly. Refer to the linked documentation for more details.