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

# Metrics & Analytics

> Track and analyze your Compozy workflow performance with powerful analytics tools

export const Badge = ({children}) => {
  const getColorClass = () => {
    switch (children) {
      case 'Available':
        return 'bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-400';
      case 'Beta':
        return 'bg-yellow-100 text-yellow-800 dark:bg-yellow-900/30 dark:text-yellow-400';
      case 'Coming Soon':
        return 'bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-400';
      default:
        return 'bg-gray-100 text-gray-800 dark:bg-gray-900/30 dark:text-gray-400';
    }
  };
  return <span className={`inline-flex items-center rounded-full px-2 py-1 text-xs font-medium ${getColorClass()}`}>
            {children}
        </span>;
};

Gain valuable insights into your workflow usage and performance with our analytics integrations. Track metrics, analyze patterns, and make data-driven decisions.

<CardGroup cols={3}>
  <Card title="Google Analytics" icon="google" href="/integrations/metrics/google-analytics">
    Track Compozy workflow usage with Google Analytics.
    <Badge>Available</Badge>
  </Card>

  <Card title="Mixpanel" icon="chart-mixed" href="/integrations/metrics/mixpanel">
    Analyze Compozy workflow usage patterns with Mixpanel.
    <Badge>Beta</Badge>
  </Card>

  <Card title="Segment" icon="chart-network" href="/integrations/metrics/segment">
    Collect and route Compozy analytics with Segment.
    <Badge>Coming Soon</Badge>
  </Card>
</CardGroup>
