Matrix Docker Ansible eploy
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

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