Configuring Dashboard Filters
Dashboard filters are preconfigured by default as part of the builtin setup. In addition to these, custom filters can be defined and managed through the dashboard filter settings.
Configuring Custom Dashboard Filters
-
Navigate to
Global Settings→Settings -
Search for
Dashboard Filtersand click Edit -
Modify an existing filter or add a new one by selecting
Add Entry -
Save the changes to make the new or updated filters available for use in dashboards
Dashboard Filter Structure
| Field | Description | Example |
|---|---|---|
key |
Unique Filter key |
|
type |
Type of filter. Possible values |
|
name |
Name of filter to be displayed |
|
placeholder |
Placeholder to be displayed when no search option is selected |
|
filterKeys |
Name of the column to be used to filter data. The value of the field should be same as filter key. |
|
options |
Dropdown values which to be displayed for the filter. Applicable for |
|
-
NOTE: The name of the filter
keyshould be same as the value of thefilterKeys
Complete example:
{
"key": "appStatus",
"type": "select_multi",
"name": "Application Status",
"display": "modal",
"placeholder": "Select Application Status",
"filterKeys": ["appStatus"],
"options": [
{ "value": "RUNNING", "label": "RUNNING" },
{ "value": "STARTED", "label": "STARTED" }
]
}