28 lines
766 B
JavaScript
28 lines
766 B
JavaScript
import IntegrationForm from './IntegrationForm';
|
|
import DocLink from 'Shared/DocLink/DocLink';
|
|
|
|
const DatadogForm = (props) => (
|
|
<>
|
|
<div className="p-5 border-b mb-4">
|
|
<div>How to integrate Datadog with OpenReplay and see backend errors alongside session recordings.</div>
|
|
<DocLink className="mt-4" label="Integrate Datadog" url="https://docs.openreplay.com/integrations/datadog" />
|
|
</div>
|
|
<IntegrationForm
|
|
{ ...props }
|
|
name="datadog"
|
|
formFields={[ {
|
|
key: "apiKey",
|
|
label: "API Key",
|
|
autoFocus: true,
|
|
}, {
|
|
key: "applicationKey",
|
|
label: "Application Key",
|
|
}
|
|
]}
|
|
/>
|
|
</>
|
|
);
|
|
|
|
DatadogForm.displayName = "DatadogForm";
|
|
|
|
export default DatadogForm;
|