1234567891011121314151617181920212223242526272829 |
- import React, { FC } from 'react';
- import { Alert } from '@grafana/ui';
- export const LOCAL_STORAGE_KEY = 'grafana.legacyalerting.unifiedalertingpromo';
- const DeprecationNotice: FC<{}> = () => (
- <Alert severity="warning" title="Grafana legacy alerting is going away soon">
- <p>
- You are using Grafana legacy alerting, it has been deprecated and will be removed in the next major version of
- Grafana.
- <br />
- We encourage you to upgrade to the new Grafana alerting experience.
- </p>
- <p>
- See{' '}
- <a href="https://grafana.com/docs/grafana/latest/alerting/unified-alerting/difference-old-new/">
- What’s New with Grafana alerting
- </a>{' '}
- to learn more about what‘s new or learn{' '}
- <a href="https://grafana.com/docs/grafana/latest/alerting/unified-alerting/opt-in/">
- how to enable the new Grafana alerting feature
- </a>
- .
- </p>
- </Alert>
- );
- export { DeprecationNotice };
|