chore: add warning to cloud connection (#5504)
# What this PR does ## Which issue(s) this PR closes Related to https://github.com/grafana/irm/issues/1089 <img width="794" alt="image" src="https://github.com/user-attachments/assets/6471e2ba-7cb8-440f-891c-0cc4177607b5" />
This commit is contained in:
parent
e4728ea69f
commit
ca6cfffcf5
1 changed files with 14 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
import React, { useCallback, useEffect, useState } from 'react';
|
import React, { useCallback, useEffect, useState } from 'react';
|
||||||
|
|
||||||
import { Button, Field, Icon, Input, LoadingPlaceholder, Stack, useStyles2 } from '@grafana/ui';
|
import { Alert, Button, Field, Icon, Input, LoadingPlaceholder, Stack, useStyles2 } from '@grafana/ui';
|
||||||
import { determineRequiredAuthString, UserActions } from 'helpers/authorization/authorization';
|
import { determineRequiredAuthString, UserActions } from 'helpers/authorization/authorization';
|
||||||
import { PLUGIN_ROOT, StackSize } from 'helpers/consts';
|
import { PLUGIN_ROOT, StackSize } from 'helpers/consts';
|
||||||
import { openErrorNotification } from 'helpers/helpers';
|
import { openErrorNotification } from 'helpers/helpers';
|
||||||
|
|
@ -387,6 +387,19 @@ const _CloudPage = observer((props: CloudPageProps) => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Stack direction="column" gap={StackSize.lg}>
|
<Stack direction="column" gap={StackSize.lg}>
|
||||||
|
<Alert severity="warning" title="">
|
||||||
|
{
|
||||||
|
<>
|
||||||
|
Starting March 24, 2026, push notifications relying on Cloud Connection will no longer be supported for
|
||||||
|
Grafana OnCall OSS.{' '}
|
||||||
|
<a href={'https://grafana.com/docs/oncall/latest/set-up/open-source/'} target="_blank" rel="noreferrer">
|
||||||
|
<Text type="link">
|
||||||
|
<span>Learn more</span>
|
||||||
|
</Text>
|
||||||
|
</a>
|
||||||
|
</>
|
||||||
|
}
|
||||||
|
</Alert>
|
||||||
<Text.Title level={3}>
|
<Text.Title level={3}>
|
||||||
Connect Open Source OnCall and <Text className={styles.cloudOncallName}>Grafana Cloud OnCall</Text>
|
Connect Open Source OnCall and <Text className={styles.cloudOncallName}>Grafana Cloud OnCall</Text>
|
||||||
</Text.Title>
|
</Text.Title>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue