Matrix Docker Ansible eploy
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

48 líneas
2.0 KiB

  1. # matrix-grafana is open source visualization and analytics software
  2. # See: https://github.com/matrix-org/synapse/blob/master/docs/metrics-howto.md
  3. matrix_grafana_enabled: false
  4. matrix_grafana_docker_image: "docker.io/grafana/grafana:7.3.7"
  5. matrix_grafana_docker_image_force_pull: "{{ matrix_grafana_docker_image.endswith(':latest') }}"
  6. # Not conditional, because when someone disables metrics
  7. # they might still want to look at the old existing data.
  8. # So it would be silly to delete the dashboard in such case.
  9. matrix_grafana_dashboard_download_urls:
  10. - "https://raw.githubusercontent.com/matrix-org/synapse/master/contrib/grafana/synapse.json"
  11. - "https://raw.githubusercontent.com/rfrail3/grafana-dashboards/master/prometheus/node-exporter-full.json"
  12. matrix_grafana_base_path: "{{ matrix_base_data_path }}/grafana"
  13. matrix_grafana_config_path: "{{ matrix_grafana_base_path }}/config"
  14. matrix_grafana_data_path: "{{ matrix_grafana_base_path }}/data"
  15. # Allow viewing Grafana without logging in
  16. matrix_grafana_anonymous_access: false
  17. # specify organization name that should be used for unauthenticated users
  18. # if you change this in the Grafana admin panel, this needs to be updated
  19. # to match to keep anonymous logins working
  20. matrix_grafana_anonymous_access_org_name: 'Main Org.'
  21. # default admin credentials, you are asked to change these on first login
  22. matrix_grafana_default_admin_user: admin
  23. matrix_grafana_default_admin_password: admin
  24. # A list of extra arguments to pass to the container
  25. matrix_grafana_container_extra_arguments: []
  26. # List of systemd services that matrix-grafana.service depends on
  27. matrix_grafana_systemd_required_services_list: ['docker.service']
  28. # List of systemd services that matrix-grafana.service wants
  29. matrix_grafana_systemd_wanted_services_list: []
  30. # Controls whether the matrix-grafana container exposes its HTTP port (tcp/3000 in the container).
  31. #
  32. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:3000"), or empty string to not expose.
  33. matrix_grafana_container_http_host_bind_port: ''