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

55 строки
3.1 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. # A list of extra arguments to pass to the node_exporter process
  11. #
  12. # Example:
  13. # matrix_prometheus_node_exporter_process_extra_arguments:
  14. # - "--collector.systemd"
  15. # - "--collector.logind"
  16. #
  17. # Note: the above is just an example. We have not confirmed that these collectors work when running in a container.
  18. # In fact, the systemd collector is exhibiting issues:
  19. # > caller=collector.go:169 level=error msg="collector failed" name=systemd duration_seconds=0.000121001 err="couldn't get dbus connection: dial unix /var/run/dbus/system_bus_socket: connect: no such file or directory"
  20. matrix_prometheus_node_exporter_process_extra_arguments: []
  21. # List of systemd services that matrix-prometheus.service depends on
  22. matrix_prometheus_node_exporter_systemd_required_services_list: ['docker.service']
  23. # List of systemd services that matrix-prometheus.service wants
  24. matrix_prometheus_node_exporter_systemd_wanted_services_list: []
  25. # Controls whether node-exporter metrics should be proxied (exposed) on `matrix.DOMAIN/metrics/node-exporter`.
  26. # This will only work take effect if `matrix_nginx_proxy_proxy_matrix_metrics_enabled: true`.
  27. # See the `matrix-nginx-proxy` role for details about enabling `matrix_nginx_proxy_proxy_matrix_metrics_enabled`.
  28. matrix_prometheus_node_exporter_metrics_proxying_enabled: false
  29. # Controls whether the matrix-prometheus container exposes its HTTP port (tcp/9100 in the container).
  30. #
  31. # Takes an "<ip>:<port>" value (e.g. "127.0.0.1:9100"), or empty string to not expose.
  32. #
  33. # You likely don't need to do this. See `matrix_prometheus_node_exporter_metrics_proxying_enabled`.
  34. #
  35. # Official recommendations are to run this container with `--net=host`,
  36. # but we don't do that, since it:
  37. # - likely exposes the metrics web server way too publicly (before applying https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/1008)
  38. # - 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`)
  39. #
  40. # Using `--net=host` and binding to Docker's `matrix` bridge network may be a solution to both,
  41. # but that's trickier to accomplish and won't necessarily work (hasn't been tested).
  42. #
  43. # Not using `--net=host` means that our network statistic reports are likely broken (inaccurate),
  44. # because node-exporter can't see all interfaces, etc.
  45. # For now, we'll live with that, until someone develops a better solution.
  46. matrix_prometheus_node_exporter_container_http_host_bind_port: ''