import { Alert } from '@grafana/ui';
import { AlertManagerDataSource } from '../utils/datasource';
interface Props {
availableAlertManagers: AlertManagerDataSource[];
}
const NoAlertManagersAvailable = () => (
We could not find any external Alertmanagers and you may not have access to the built-in Grafana Alertmanager.
);
const OtherAlertManagersAvailable = () => (
The selected Alertmanager no longer exists or you may not have permission to access it. You can select a different
Alertmanager from the dropdown.
);
export const NoAlertManagerWarning = ({ availableAlertManagers }: Props) => {
const hasOtherAMs = availableAlertManagers.length > 0;
return
{hasOtherAMs ? : }
;
};