From 418959ae3d7a7b2f8835f10db5f081dbe26f8222 Mon Sep 17 00:00:00 2001 From: Dale Mcdiarmid Date: Fri, 22 Nov 2024 16:04:16 +0000 Subject: [PATCH 1/2] mitzu & navbar fix --- .../data-visualization/mitzu-and-clickhouse.md | 14 +++++++------- src/theme/Navbar/Content/index.js | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/en/integrations/data-visualization/mitzu-and-clickhouse.md b/docs/en/integrations/data-visualization/mitzu-and-clickhouse.md index 0d9f84cec79..f6810f12341 100644 --- a/docs/en/integrations/data-visualization/mitzu-and-clickhouse.md +++ b/docs/en/integrations/data-visualization/mitzu-and-clickhouse.md @@ -9,9 +9,9 @@ import ConnectionDetails from '@site/docs/en/\_snippets/\_gather_your_details_ht # Connecting Mitzu to ClickHouse -Mitzu is a no-code warehouse-native product analytics application. Like Amplitude, Mixpanel, or Posthog, Mitzu enables users to -query product usage data without SQL or Python knowledge, but instead of copying the company's product usage data, Mitzu generates native SQL -queries over the company's data warehouse or lake. +Mitzu is a no-code, warehouse-native product analytics application. Similar to tools like Amplitude, Mixpanel, and PostHog, Mitzu empowers users to analyze product usage data without requiring SQL or Python expertise. + +However, unlike these platforms, Mitzu does not duplicate the company’s product usage data. Instead, it generates native SQL queries directly on the company’s existing data warehouse or lake. ## Goal @@ -22,7 +22,7 @@ In this guide, we are going to cover the following: :::tip Example datasets If you do not have a data set to use for Mitzu, you can work with NYC Taxi Data. -This dataset is available in ClickHouse Cloud. +This dataset is available in ClickHouse Cloud or [can be loaded with these instructions](/docs/en/getting-started/example-datasets/nyc-taxi). ::: This guide is just a brief overview of how to use Mitzu. You can find more detailed information in the [Mitzu documentation](https://docs.mitzu.io/). @@ -53,11 +53,10 @@ First, select ClickHouse as the connection type and set the connection details. Once the connection is saved, select the `Event tables` tab and click the `Add table` button. In the modal, select your database and the tables you want to add to Mitzu. - Use the checkboxes to select at least one table and click on the `Configure table` button. This will open a modal window where you can set the key columns for each table. Setup table connection - +
> To run product analytics on your ClickHouse setup, you need to > specify a few key columns from your table. > @@ -68,7 +67,7 @@ Use the checkboxes to select at least one table and click on the `Configure tabl > - Optional[**Event name**] - This column segments the events if the table contains multiple event types. Create event catalog - +
Once all tables are configured, click on the `Save & update event catalog` button, and Mitzu will find all events and their properties from the above-defined table. This step may take up to a few minutes, depending on the size of your dataset. ## 4. Run segmentation queries @@ -117,6 +116,7 @@ Pick `Weekly cohort retention` to visualize how your retention rates change over Select up to 9 steps for a funnel. Choose the time window within which your users can finish the journey. Mitzu's journey charts give you a visual map of every path users take through the selected events. Journey +
:::tip Break down steps You can select a property for the segment `Break down` to distinguish users within the same step. diff --git a/src/theme/Navbar/Content/index.js b/src/theme/Navbar/Content/index.js index efc1be1e1ab..a6e5e099529 100644 --- a/src/theme/Navbar/Content/index.js +++ b/src/theme/Navbar/Content/index.js @@ -216,7 +216,7 @@ const dropdownCategories = [{ { title: 'All Integrations', description: 'Integrate ClickHouse with other databases and applications', - link: '/docs/en/integrations/s3' + link: '/docs/en/integrations' }, { title: 'Clients and Drivers', From 7126f80e14b3e5f28f0a5c4b08e921ff5f3e7c84 Mon Sep 17 00:00:00 2001 From: Dale Mcdiarmid Date: Fri, 22 Nov 2024 17:27:47 +0000 Subject: [PATCH 2/2] refine + fix admonions --- docusaurus.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 4c699d0b49d..e93e44b4330 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -58,7 +58,11 @@ const config = { 'caution', 'danger', 'experimental', - 'obsolete' + 'obsolete', + 'warning', + 'success', + 'important', + 'secondary' ] }, sidebarPath: require.resolve('./sidebars.js'),