mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-22 09:56:57 +00:00
chore: remove migration notification (#8537)
This commit is contained in:
parent
168a7baf6c
commit
77ee201bb7
@ -2,7 +2,7 @@
|
|||||||
import './Home.styles.scss';
|
import './Home.styles.scss';
|
||||||
|
|
||||||
import { Color } from '@signozhq/design-tokens';
|
import { Color } from '@signozhq/design-tokens';
|
||||||
import { Alert, Button, Popover } from 'antd';
|
import { Button, Popover } from 'antd';
|
||||||
import logEvent from 'api/common/logEvent';
|
import logEvent from 'api/common/logEvent';
|
||||||
import { HostListPayload } from 'api/infraMonitoring/getHostLists';
|
import { HostListPayload } from 'api/infraMonitoring/getHostLists';
|
||||||
import { K8sPodsListPayload } from 'api/infraMonitoring/getK8sPodsList';
|
import { K8sPodsListPayload } from 'api/infraMonitoring/getK8sPodsList';
|
||||||
@ -320,8 +320,6 @@ export default function Home(): JSX.Element {
|
|||||||
}
|
}
|
||||||
}, [hostData, k8sPodsData, handleUpdateChecklistDoneItem]);
|
}, [hostData, k8sPodsData, handleUpdateChecklistDoneItem]);
|
||||||
|
|
||||||
const { isCloudUser, isEnterpriseSelfHostedUser } = useGetTenantLicense();
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
logEvent('Homepage: Visited', {});
|
logEvent('Homepage: Visited', {});
|
||||||
}, []);
|
}, []);
|
||||||
@ -706,33 +704,6 @@ export default function Home(): JSX.Element {
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
<div className="home-right-content">
|
<div className="home-right-content">
|
||||||
{(isCloudUser || isEnterpriseSelfHostedUser) && (
|
|
||||||
<div className="home-notifications-container">
|
|
||||||
<div className="notification">
|
|
||||||
<Alert
|
|
||||||
message={
|
|
||||||
<>
|
|
||||||
We're updating our metric ingestion processing pipeline.
|
|
||||||
Currently, metric names and labels are normalized to replace dots and
|
|
||||||
other special characters with underscores (_). This restriction will
|
|
||||||
soon be removed. Learn more{' '}
|
|
||||||
<a
|
|
||||||
href="https://signoz.io/guides/metrics-migration-cloud-users"
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener noreferrer"
|
|
||||||
>
|
|
||||||
here
|
|
||||||
</a>
|
|
||||||
.
|
|
||||||
</>
|
|
||||||
}
|
|
||||||
type="warning"
|
|
||||||
showIcon
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{!isWelcomeChecklistSkipped && !loadingUserPreferences && (
|
{!isWelcomeChecklistSkipped && !loadingUserPreferences && (
|
||||||
<AnimatePresence initial={false}>
|
<AnimatePresence initial={false}>
|
||||||
<Card className="checklist-card">
|
<Card className="checklist-card">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user