Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/integrate/prometheus-with-redis-cloud/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ To get started with custom monitoring with Prometheus on Docker:
- job_name: redis-cloud
scrape_interval: 30s
scrape_timeout: 30s
metrics_path: /
metrics_path: / # For v2, use /v2
scheme: https
static_configs:
- targets: ["<prometheus_endpoint>:8070"]
Expand Down
4 changes: 2 additions & 2 deletions content/integrate/prometheus-with-redis-enterprise/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ We recommend running Prometheus in Docker only for development and testing.
- job_name: redis-enterprise
scrape_interval: 30s
scrape_timeout: 30s
metrics_path: /
metrics_path: / # For v2, use /v2
scheme: https
tls_config:
insecure_skip_verify: true
static_configs:
- targets: ["<cluster_name>:8070"] # For v2, use ["<cluster_name>:8070/v2"]
- targets: ["<cluster_name>:8070"]
```

1. Set up your Prometheus and Grafana servers.
Expand Down