> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cockroachlabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Integrate Overview

export const InternalLink = ({version, path = "", children, ...props}) => {
  let detectedVersion = version || "stable";
  if (typeof window !== 'undefined' && !version) {
    const match = window.location.pathname.match(/\/docs\/([^/]+)/);
    if (match) {
      detectedVersion = match[1];
    }
  }
  const normalizedPath = path.startsWith("/") ? path.slice(1) : path;
  return <a href={`/docs/${detectedVersion}/${normalizedPath}`} {...props}>
      {children}
    </a>;
};

Cockroach Continuum clusters integrate with the rest of your stack the same way CockroachDB Cloud clusters do. Changefeeds stream row-level changes to external systems, and the Terraform provider manages resources as code.

Changefeeds to external sinks are enabled by the <InternalLink path="editions-and-add-ons#add-ons">Data Sync add-on</InternalLink>, the one add-on available on Standard clusters. Sinkless changefeeds are outside the add-on boundary and work on every cluster.

To monitor your clusters in third-party observability tools, you can also <InternalLink version="cockroachcloud" path="export-metrics">export metrics</InternalLink>.

Pages in this section:

* <InternalLink version="stable" path="changefeed-sinks">Changefeed Sinks</InternalLink>
* <InternalLink version="cockroachcloud" path="provision-a-cluster-with-terraform">Terraform Provider</InternalLink>
