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 in GoodData showing the Analytics Catalog. The layout includes a welcome banner at the top and a searchable list of dashboards, visualizations, and metrics. Each entry displays a title, type icon, tags, the name of the owner, and last edited timestamp.

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:

Analytics Catalog interface with the Tags column displayed on the right. Analytical objects such as dashboards and visualizations are listed, and tags like products and marketing are shown as labels next to each entry.