DeprecationNotice.tsx 974 B

1234567891011121314151617181920212223242526272829
  1. import React, { FC } from 'react';
  2. import { Alert } from '@grafana/ui';
  3. export const LOCAL_STORAGE_KEY = 'grafana.legacyalerting.unifiedalertingpromo';
  4. const DeprecationNotice: FC<{}> = () => (
  5. <Alert severity="warning" title="Grafana legacy alerting is going away soon">
  6. <p>
  7. You are using Grafana legacy alerting, it has been deprecated and will be removed in the next major version of
  8. Grafana.
  9. <br />
  10. We encourage you to upgrade to the new Grafana alerting experience.
  11. </p>
  12. <p>
  13. See{' '}
  14. <a href="https://grafana.com/docs/grafana/latest/alerting/unified-alerting/difference-old-new/">
  15. What’s New with Grafana alerting
  16. </a>{' '}
  17. to learn more about what&lsquo;s new or learn{' '}
  18. <a href="https://grafana.com/docs/grafana/latest/alerting/unified-alerting/opt-in/">
  19. how to enable the new Grafana alerting feature
  20. </a>
  21. .
  22. </p>
  23. </Alert>
  24. );
  25. export { DeprecationNotice };