forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
45 lines
1.3 KiB
import React, { FC } from 'react';
|
|
|
|
import { Alert } from '@grafana/ui';
|
|
import { useLocalStorage } from 'react-use';
|
|
|
|
export const LOCAL_STORAGE_KEY = 'grafana.legacyalerting.unifiedalertingpromo';
|
|
|
|
const UnifiedAlertingPromotion: FC<{}> = () => {
|
|
const [showUnifiedAlertingPromotion, setShowUnifiedAlertingPromotion] = useLocalStorage<boolean>(
|
|
LOCAL_STORAGE_KEY,
|
|
true
|
|
);
|
|
|
|
if (!showUnifiedAlertingPromotion) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Alert
|
|
severity="info"
|
|
title="Try out the Grafana 8 alerting!"
|
|
onRemove={() => setShowUnifiedAlertingPromotion(false)}
|
|
>
|
|
<p>
|
|
You are using the legacy Grafana alerting.
|
|
<br />
|
|
While we have no plans of deprecating it any time soon, we invite you to give the improved Grafana 8 alerting a
|
|
try.
|
|
</p>
|
|
<p>
|
|
See{' '}
|
|
<a href="https://grafana.com/docs/grafana/latest/alerting/unified-alerting/difference-old-new/">
|
|
What’s New with Grafana 8 alerting
|
|
</a>{' '}
|
|
to learn more about what‘s new in Grafana 8 alerting or learn{' '}
|
|
<a href="https://grafana.com/docs/grafana/latest/alerting/unified-alerting/opt-in/">
|
|
how to enable the new Grafana 8 alerting feature
|
|
</a>
|
|
.
|
|
</p>
|
|
</Alert>
|
|
);
|
|
};
|
|
|
|
export { UnifiedAlertingPromotion };
|
|
|