Milan Perovic
05/09/2023, 8:06 AMAnkit Nayan
05/09/2023, 9:12 AMMilan Perovic
05/09/2023, 9:13 AMAnkit Nayan
05/09/2023, 9:15 AM# prometheus.yml for monitoring a Timescale Cloud instance
global:
scrape_interval: 10s
evaluation_interval: 10s
scrape_configs:
- job_name: prometheus
scheme: https
static_configs:
- targets: ['{TARGET_IP}:{TARGET_PORT}']
tls_config:
insecure_skip_verify: true
basic_auth:
username: {ENDPOINT_USERNAME}
password: {ENDPOINT_PASSWORD}
remote_write:
- url: "http://{ADAPTER_IP}:9201/write"
remote_read:
- url: "http://{ADAPTER_IP}:9201/read"
Milan Perovic
05/09/2023, 9:22 AMAnkit Nayan
05/09/2023, 9:24 AMremote_write:
- url: "http://{ADAPTER_IP}:9201/write"
remote_read:
- url: "http://{ADAPTER_IP}:9201/read"