import React from 'react'; import Page from 'app/core/components/Page/Page'; import { useNavModel } from 'app/core/hooks/useNavModel'; export default function FeatureTogglePage() { const navModel = useNavModel('alert-list'); return (

Alerting is not enabled

To enable alerting, enable it in the Grafana config:
            {`[unified_alerting]
enable = true
`}
          
For legacy alerting
            {`[alerting]
enable = true
`}
          
); }