Matrix Docker Ansible eploy
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.
 
 

36 lines
2.0 KiB

  1. ---
  2. # matrix-prometheus-node-exporter is an Prometheus exporter for machine metrics
  3. # See: https://prometheus.io/docs/guides/node-exporter/
  4. matrix_prometheus_node_exporter_enabled: false
  5. matrix_prometheus_node_exporter_version: v1.3.1
  6. matrix_prometheus_node_exporter_docker_image: "{{ matrix_container_global_registry_prefix }}prom/node-exporter:{{ matrix_prometheus_node_exporter_version }}"
  7. matrix_prometheus_node_exporter_docker_image_force_pull: "{{ matrix_prometheus_node_exporter_docker_image.endswith(':latest') }}"
  8. # A list of extra arguments to pass to the container
  9. matrix_prometheus_node_exporter_container_extra_arguments: []
  10. # List of systemd services that matrix-prometheus.service depends on
  11. matrix_prometheus_node_exporter_systemd_required_services_list: ['docker.service']
  12. # List of systemd services that matrix-prometheus.service wants
  13. matrix_prometheus_node_exporter_systemd_wanted_services_list: []
  14. # Controls whether the matrix-prometheus container exposes its HTTP port (tcp/9100 in the container).
  15. #
  16. # Takes an "<ip>:<port>" value (e.g. "127.0.0.1:9100"), or empty string to not expose.
  17. #
  18. # Official recommendations are to run this container with `--net=host`,
  19. # but we don't do that, since it:
  20. # - likely exposes the metrics web server way too publicly (before applying https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/1008)
  21. # - or listens on a loopback interface only (--net=host and 127.0.0.1:9100), which is not reachable from another container (like `matrix-prometheus`)
  22. #
  23. # Using `--net=host` and binding to Docker's `matrix` bridge network may be a solution to both,
  24. # but that's trickier to accomplish and won't necessarily work (hasn't been tested).
  25. #
  26. # Not using `--net=host` means that our network statistic reports are likely broken (inaccurate),
  27. # because node-exporter can't see all interfaces, etc.
  28. # For now, we'll live with that, until someone develops a better solution.
  29. matrix_prometheus_node_exporter_container_http_host_bind_port: ''