> ## 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.

# Telemetry

> Monitor, track, and analyze your Compozy workflows with integrated telemetry solutions

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>;
};

Get deep insights into your Compozy workflows with our telemetry integrations. Monitor performance, track errors, and analyze metrics using your preferred observability platform.

<CardGroup cols={3}>
  <Card title="Datadog" icon="datadog" href="/integrations/telemetry/datadog">
    Comprehensive monitoring and observability for your Compozy workflows with Datadog.
    <Badge>Available</Badge>
  </Card>

  <Card title="New Relic" icon="chart-line" href="/integrations/telemetry/new-relic">
    Monitor Compozy workflows with New Relic's powerful observability platform.
    <Badge>Beta</Badge>
  </Card>

  <Card title="Grafana" icon="chart-simple" href="/integrations/telemetry/grafana">
    Visualize Compozy metrics and logs with customizable Grafana dashboards.
    <Badge>Available</Badge>
  </Card>

  <Card title="Prometheus" icon="chart-line" href="/integrations/telemetry/prometheus">
    Collect and query Compozy metrics using Prometheus.
    <Badge>Beta</Badge>
  </Card>

  <Card title="OpenTelemetry" icon="telescope" href="/integrations/telemetry/open-telemetry">
    Implement OpenTelemetry standards in your Compozy workflows.
    <Badge>Coming Soon</Badge>
  </Card>

  <Card title="AWS CloudWatch" icon="aws" href="/integrations/telemetry/aws-cloudwatch">
    Monitor Compozy with AWS CloudWatch metrics and logs.
    <Badge>Available</Badge>
  </Card>
</CardGroup>
