Hi Team, We are using Gooddata Cloud as embedded i...
# gooddata-cloud
a
Hi Team, We are using Gooddata Cloud as embedded in our platform using Iframe. We are trying to embed Analytics Catalog Feature but struggling. Can you please share document ( current doc on the website is not updated)
k
The Analytics Catalog is currently an experimental feature in GoodData Cloud. According to the latest available documentation, the Analytics Catalog allows you to search and access all your visualizations, dashboards, and metrics from a central place, which is especially useful as your project grows. You can find it on the Home page of your GoodData Cloud environment. Important notes: - The feature is experimental and may change or be removed in the future. - To use it, you may need to update your Content Security Policy (CSP) to allow
<http://api.openai.com|api.openai.com>
in your
connect-src
directive if you want to leverage AI-powered features. - Tags can be added to analytical objects via the API, but as of now, filtering by owner or tags within the Analytics Catalog UI is not yet available (this is planned for a future update). How to enable and use Analytics Catalog: 1. Enable the feature: Go to Settings > Early Access in your GoodData Cloud workspace and enable the Analytics Catalog for your workspace. Only one early access feature can be enabled per workspace at a time. 2. Access the Catalog: Once enabled, you should see the Analytics Catalog on your Home page. 3. Tagging objects: You can add tags to dashboards and other objects using the API. For example, to add a tag to a dashboard:
Copy code
bash     curl $HOST_URL/api/v1/entities/workspaces/<workspace_id>/analyticalDashboards/<dashboard_id> \     -H 'Authorization: Bearer $API_TOKEN' \     -H 'Content-Type: application/vnd.gooddata.api+json' \     -X PATCH \     -d '{       "data":{         "attributes": {           "tags": [             "products"           ]         },         "id": "<dashboard_id>",         "type": "analyticalDashboard"         }       }'
Your tags will then appear in the Tags column in the catalog. Limitations: - As of now, filtering by owner or tags in the UI is not available. - The documentation and feature set may change as this is an experimental feature. For more details, see the [Analytics Catalog documentation](https://www.gooddata.com/docs/cloud/experimental-features/analytics-homepage/) and the [Early Access Features guide](https://www.gooddata.com/docs/cloud/experimental-features/) for instructions on enabling experimental features. If you need to embed the Analytics Catalog itself via iframe, there is currently no official documentation or support for embedding this specific page as an iframe, unlike dashboards or the Analytical Designer, which have explicit embedding instructions. If you require this functionality, you may want to provide feedback to GoodData via their Slack or support channels, as the feature is still under development and user feedback is encouraged. If you need to embed dashboards or the Analytical Designer, refer to the official [embedding documentation](https://www.gooddata.com/docs/cloud/embed-visualizations/) for supported options and code examples. If you have further questions or need help with API calls or CSP configuration, please let me know!