import { Alert, AlertDescription, AlertIcon } from '@chakra-ui/react'; import ExternalLink from '../../../../common/components/external-link/ExternalLink'; import * as Panel from '../PanelUtils'; import HttpIntegrations from './HttpIntegrations'; import OscIntegrations from './OscIntegrations'; const integrationDocsUrl = 'https://ontime.gitbook.io/v2/control-and-feedback/integrations'; export default function IntegrationsPanel() { return ( <> Integration settings Integrations allow Ontime to receive commands or send its data to other systems in your workflow.

Currently supported protocols are OSC (Open Sound Control), HTTP and Websockets.
WebSockets are used for Ontime and cannot be configured independently.
See the docs
); }