You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 regels
594 B

  1. PROMETHEUS = {
  2. "url": "http://127.0.0.1:9090",
  3. "disable_ssl": True,
  4. }
  5. # URL FORMATS:
  6. #
  7. # Backend # TLS # Bucket/item # URL Format
  8. ###########################################
  9. # Minio S3 # N # Y # minio+http://user:password@host[:port]
  10. # Minio S3 # Y # Y # minio+https://user:password@host[:port]
  11. TARGETS = [
  12. {
  13. "url": "minio+https://user:password@minio",
  14. "free_space": {
  15. "query": "minio_cluster_capacity_usable_free_bytes{job=\"somejob\"}",
  16. "minimum": (1024 * 1024 * 1024 * 500), # 500 gigabytes
  17. }
  18. },
  19. ]