redis-exporter
Secure by Design, Built for Speed, Hardened Container Images on a minimal base CleanStart OS.
50K+
Container Documentation for Redis-Exporter
A Redis exporter for metrics in particular format. This container enables monitoring and metrics collection from Redis instances, providing detailed insights into Redis performance, memory usage, connections, and other critical operational metrics for enterprise Redis deployments.
š Base Foundation: Security-hardened, minimal base OS designed for enterprise containerized environments from Cleanstart Registry.
Key Features Core capabilities and strengths of the Redis exporter
Common Use Cases Typical scenarios where this exporter is valuable
Pull Latest Image Download the Redis exporter container image
docker pull cleanstart/redis-exporter:latest
Production Deployment Deploy Redis exporter with security settings
docker run -d --name redis-exporter \
-p 9121:9121 \
--security-opt=no-new-privileges \
-e REDIS_ADDR=redis://redis:6378 \
cleanstart/redis-exporter:latest
Development Setup Quick exporter setup for development
docker run -d --name redis-exporter-dev \
-p 9121:9121 \
-e REDIS_ADDR=redis://localhost:6379 \
cleanstart/redis-exporter:latest
Docker Compose Setup Complete exporter service configuration
version: '3.8'
services:
redis-exporter:
image: cleanstart/redis-exporter:latest
container_name: redis-exporter
restart: unless-stopped
ports:
- "9121:9121"
environment:
REDIS_ADDR: redis://redis:6379
security_opt:
- no-new-privileges:true
Environment Variables Configuration options available through environment variables
| Variable | Default | Description |
|---|---|---|
| REDIS_ADDR | redis://localhost:6379 | Redis server address |
| REDIS_PASSWORD | Redis server password | |
| REDIS_USER | Redis server username | |
| REDIS_EXPORTER_WEB_LISTEN_ADDRESS | 0.0.0.0:9121 | Address to listen on |
Security Best Practices Recommended security configurations and practices
Kubernetes Security Context Recommended security context for Kubernetes deployments
securityContext:
runAsNonRoot: true
runAsUser: 9121
runAsGroup: 9121
readOnlyRootFilesystem: true
allowPrivilegeEscalation: false
capabilities:
drop: ["ALL"]
Multi-Platform Images
docker pull --platform linux/amd64 cleanstart/redis-exporter:latest
docker pull --platform linux/arm64 cleanstart/redis-exporter:latest
Essential links and resources for further information
CleanStart Images: https://images.cleanstart.com/ā
Community Images:
Docker Hub: https://hub.docker.com/u/cleanstartā
GitHub: https://github.com/cleanstart-containersā
AWS ECR Public Gallery: https://gallery.ecr.aws/cleanstart/ā
Presence on Social Media:
Community: https://www.linkedin.com/groups/18324021/ā
YouTube: https://www.youtube.com/@CleanStartOfficialā
Contribute to Container Use Cases: https://github.com/cleanstart-dev/cleanstart-use-cases/ā
Vulnerability Disclaimer
CleanStart offers Docker images that include third-party open-source libraries and packages maintained by independent contributors. While CleanStart maintains these images and applies industry-standard security practices, it cannot guarantee the security or integrity of upstream components beyond its control.
Users acknowledge and agree that open-source software may contain undiscovered vulnerabilities or introduce new risks through updates. CleanStart shall not be liable for security issues originating from third-party libraries, including but not limited to zero-day exploits, supply chain attacks, or contributor-introduced risks.
Security remains a shared responsibility: CleanStart provides updated images and guidance where possible, while users are responsible for evaluating deployments and implementing appropriate controls.
Content type
Image
Digest
sha256:19d865f3cā¦
Size
57.1 MB
Last updated
about 9 hours ago
docker pull cleanstart/redis-exporter:1.86.0-amd64-dev