How do I keep ClickHouse dashboards under version control and code review?
Store the dashboard YAML in the same repo as your ClickHouse models. Every change is a diff, every deploy is a merge, and rollback is a git revert.
Command
dac serveDefined in
YAML
Works with
ClickHouse + GitHub / GitLab
What you get
Git historyPR reviewinstant rollback
How it works in code
$ git diff dashboards/revenue.yml
$ dac serve # preview against clickhouseRun dac serve and the reviewed dashboard ships to ClickHouse on merge.
Related use cases
Dashboards on your warehouse
Build a dashboard as code on Snowflake
How do I build a version-controlled dashboard on Snowflake without a BI tool?
Dashboards on your warehouseServe a live Snowflake dashboard from a YAML file
Can I turn a Snowflake query into a shareable live dashboard with one command?
Dashboards on your warehouseVersion-control Snowflake dashboards in git
How do I keep Snowflake dashboards under version control and code review?
Dashboards that live in git
Open source. Write YAML, run one command, query your warehouse directly.