import React from 'react';

const DatadogDashboard: React.FC = () => {
  // Replace with your actual Datadog dashboard embed URL
  const datadogDashboardEmbedUrl = 'https://p.datadoghq.com/sb/a77ffb52-9ed8-11ee-9fea-da7ad0900002-41b1f4cd7a1f9d81598eb86386fff58b';

  return (
    <div>
      <h2>Datadog Dashboard</h2>
      <iframe
        src={datadogDashboardEmbedUrl}
        width="100%"
        height="600"
        frameBorder="0"
        allowTransparency={true}
        style={{ border: 'none' }}
      ></iframe>
    </div>
  );
};

export default DatadogDashboard;