Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,18 @@ import hyperdx_cloud_landing from '@site/static/images/use-cases/observability/h
import hyperdx_cloud_datasource from '@site/static/images/use-cases/observability/hyperdx_cloud_datasource.png';
import hyperdx_create_new_source from '@site/static/images/use-cases/observability/hyperdx_create_new_source.png';
import hyperdx_create_trace_datasource from '@site/static/images/use-cases/observability/hyperdx_create_trace_datasource.png';
import { TrackedLink } from '@site/src/components/GalaxyTrackedLink/GalaxyTrackedLink';

<PrivatePreviewBadge/>

::::note[Private Preview]
This feature is in ClickHouse Cloud private preview. If your org is interested in getting priority access,
<TrackedLink href="https://clickhouse.com/cloud/clickstack-private-preview" eventName="docs.clickstack_deployment.waitlist_cta">join the waitlist</TrackedLink>.

If you're new to ClickHouse Cloud, click
<TrackedLink href="/docs/cloud/overview" eventName="docs.clickstack_deployment.cloud_learn_more_cta">here</TrackedLink> to learn more or <TrackedLink href="https://clickhouse.cloud/signUp" eventName="docs.clickstack_deployment.cloud_signup_cta" target="_blank" rel="noopener noreferrer">sign up for a free trial</TrackedLink> to get started.
::::

This option is designed for users who are using ClickHouse Cloud. In this deployment pattern, both ClickHouse and HyperDX are hosted in ClickHouse Cloud, minimizing the number of components the user needs to self-host.

As well as reducing infrastructure management, this deployment pattern ensures authentication is integrated with ClickHouse Cloud SSO/SAML. Unlike self-hosted deployments, there is also no need to provision a MongoDB instance to store application state — such as dashboards, saved searches, user settings, and alerts.
Expand Down
28 changes: 28 additions & 0 deletions src/components/GalaxyTrackedLink/GalaxyTrackedLink.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import React from 'react';
import { galaxyOnClick } from '../../lib/galaxy/galaxy';

interface TrackedLinkProps {
href: string;
eventName: string;
children: React.ReactNode;
target?: string;
rel?: string;
className?: string;
}

export const TrackedLink: React.FC<TrackedLinkProps> = ({
href,
eventName,
children,
...rest
}) => {
return (
<a
href={href}
onClick={galaxyOnClick(eventName)}
{...rest}
>
{children}
</a>
);
};