Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

35 строки
1.9 KiB

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