mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 02:23:31 -06:00
* Update legacy alerting warning * Apply suggestions from code review Co-authored-by: brendamuir <100768211+brendamuir@users.noreply.github.com> * Update DeprecationNotice.tsx * silly linter * Clarify alerting deprecation --------- Co-authored-by: Gilles De Mey <gilles.de.mey@gmail.com> Co-authored-by: brendamuir <100768211+brendamuir@users.noreply.github.com>
26 lines
805 B
TypeScript
26 lines
805 B
TypeScript
import React from 'react';
|
|
|
|
import { Alert } from '@grafana/ui';
|
|
|
|
export const LOCAL_STORAGE_KEY = 'grafana.legacyalerting.unifiedalertingpromo';
|
|
|
|
const DeprecationNotice = () => (
|
|
<Alert severity="warning" title="Grafana legacy alerting is deprecated and will be removed in a future release.">
|
|
<p>
|
|
You are using Grafana legacy alerting, which has been deprecated since Grafana 9.0. The codebase is now staying as
|
|
is and will be removed in Grafana 11.0.
|
|
<br />
|
|
We recommend upgrading to Grafana Alerting as soon as possible.
|
|
</p>
|
|
<p>
|
|
See{' '}
|
|
<a href="https://grafana.com/docs/grafana/latest/alerting/migrating-alerts/">
|
|
how to upgrade to Grafana Alerting
|
|
</a>{' '}
|
|
to learn more.
|
|
</p>
|
|
</Alert>
|
|
);
|
|
|
|
export { DeprecationNotice };
|