dashboards.yaml 870 B

123456789101112131415161718192021222324
  1. apiVersion: 1
  2. providers:
  3. # <string> an unique provider name. Required
  4. - name: 'GPUStack-dashboards'
  5. # <int> Org id. Default to 1
  6. orgId: 1
  7. # <string> name of the dashboard folder.
  8. folder: ''
  9. # <string> folder UID. will be automatically generated if not specified
  10. folderUid: ''
  11. # <string> provider type. Default to 'file'
  12. type: file
  13. # <bool> disable dashboard deletion
  14. disableDeletion: false
  15. # <int> how often Grafana will scan for changed dashboards
  16. updateIntervalSeconds: 10
  17. # <bool> allow updating provisioned dashboards from the UI
  18. allowUiUpdates: false
  19. options:
  20. # <string, required> path to dashboard files on disk. Required when using the 'file' type
  21. path: /etc/dashboards
  22. # <bool> use folder names from filesystem to create folders in Grafana
  23. foldersFromFilesStructure: true~