GitHub user dosubot[bot] added a comment to the discussion: Alerts and Reports configuration in Superset 5.0.0rc2
<!-- Answer --> To use Chromium for Alerts and Reports in Apache Superset 5.0.0rc2, you need to configure your `superset_config.py` or `superset_config_docker.py` to use the Chromium headless browser. Since Chromium is already included in the Dockerfile, set the `WEBDRIVER_TYPE` to `"chrome"` in your configuration file: ```python # In your superset_config.py or superset_config_docker.py WEBDRIVER_TYPE = "chrome" ``` Additionally, ensure the `"ALERT_REPORTS"` feature flag is set to `True` and configure the necessary settings for email or Slack notifications. This setup will enable the use of Chromium for taking screenshots of charts and dashboards <sup>[[1]](https://github.com/apache/superset/blob/master/docs/docs/configuration/alerts-reports.mdx)</sup>. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* --- <sup>Help Dosu learn! Give it feedback: [Great Response](https://app.dosu.dev/response-feedback/24b3b6cb-ee96-492b-bae6-f4ee0fb474af?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/24b3b6cb-ee96-492b-bae6-f4ee0fb474af?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/24b3b6cb-ee96-492b-bae6-f4ee0fb474af?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/24b3b6cb-ee96-492b-bae6-f4ee0fb474af?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/24b3b6cb-ee96-492b-bae6-f4ee0fb474af?feedback_type=hallucination) | [Bug Report](https://app.dosu.dev/response-feedback/24b3b6cb-ee96-492b-bae6-f4ee0fb474af?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/24b3b6cb-ee96-492b-bae6-f4ee0fb474af?feedback_type=other)</sup> GitHub link: https://github.com/apache/superset/discussions/33343#discussioncomment-13010406 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
