Analytics Catalog

The Analytics Catalog lets you search through and access all your visualizations, dashboards, metrics from one place, mitigating some of the bloat that comes as the size of your project grows. You can find it on the Home page.

personalized homepage

Add Tags

You can add one or more tags to each analytical object using its entity API endpoint. For example, to add the tag products to your products dashboard, make the following API call:

curl $HOST_URL/api/v1/entities/workspaces/<workspace_id>/analyticalDashboards/<dashboard_id> \
-H 'Authorization: Bearer $API_TOKEN' \
-H 'Content-Type: application/json' \
-X PATCH \
-d '{
    "attributes": {
      "tags": [
        "products"
      ]
    },
    "id": "<dashboard_id>",
    "type": "analyticalDashboard"
}
'

Your tags will then be displayed in the Tags column:

personalized homepage