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

On the home page you will also find our generative chatbot that lets you interact with your data in a conversational manner, quickly retrieving specific metrics or gaining insights from vast datasets and even generate visualizations. This feature is described in a separate Flex AI Chat Assistant article.

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