Dashboard
.dashboard
Each dashboard must be stored as dashboard_name.dashboard YAML file:
dashboard: dashboard_name
title: 'title in UI'
description: 'description in UI'
access_roles:
- role
- role
- ...
access_users:
- user_alias
- user_alias
- ...
fields:
# List of Filter fields
# - filter: filter_name
# ...
reports:
# List of Reports
# - title: 'report title in UI'
# ...
Dashboard Parameters
| Name | Type | Default | Description | 
|---|---|---|---|
| dashboard* | string | - | Dashboard name | 
| title | string | - | Dashboard title in UI | 
| description | string | - | Dashboard description in UI | 
| access_roles | string[] | - | If specified, only users with the listed roles will have access to dashboard | 
| access_users | string[] | - | If specified, only the listed users will have access to dashboard | 
| fields | Filter[] | - | Begin a section of fields (only Filter fields for Dashboard) | 
| reports* | Report[] | - | Begin a section of reports |