mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-12 17:48:59 +08:00
chore: hide usage explorer and update over 100rps warning (#5937)
This commit is contained in:
parent
1024483e58
commit
723c31f6c5
@ -1,3 +1,3 @@
|
||||
{
|
||||
"rps_over_100": "You are sending data at more than 100 RPS, your ingestion may be rate limited. Please reach out to us via Intercom support."
|
||||
"rps_over_100": "You are sending data at more than 100 RPS, your ingestion may be rate limited. Please reach out to us via Intercom support or "
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
"rps_over_100": "You are sending data at more than 100 RPS, your ingestion may be rate limited. Please reach out to us via Intercom support."
|
||||
"rps_over_100": "You are sending data at more than 100 RPS, your ingestion may be rate limited. Please reach out to us via Intercom support or "
|
||||
}
|
||||
|
@ -92,9 +92,10 @@ function ServiceMetricTable({
|
||||
return (
|
||||
<>
|
||||
{RPS > MAX_RPS_LIMIT && (
|
||||
<Flex justify="center">
|
||||
<Flex justify="left">
|
||||
<Typography.Title level={5} type="warning" style={{ marginTop: 0 }}>
|
||||
<WarningFilled /> {getText('rps_over_100')}
|
||||
<a href="mailto:cloud-support@signoz.io">email</a>
|
||||
</Typography.Title>
|
||||
</Flex>
|
||||
)}
|
||||
|
@ -49,10 +49,11 @@ function ServiceTraceTable({
|
||||
return (
|
||||
<>
|
||||
{RPS > MAX_RPS_LIMIT && (
|
||||
<Flex justify="flex-end">
|
||||
<Typography.Text type="warning" style={{ marginTop: 0 }}>
|
||||
<Flex justify="left">
|
||||
<Typography.Title level={5} type="warning" style={{ marginTop: 0 }}>
|
||||
<WarningFilled /> {getText('rps_over_100')}
|
||||
</Typography.Text>
|
||||
<a href="mailto:cloud-support@signoz.io">email</a>
|
||||
</Typography.Title>
|
||||
</Flex>
|
||||
)}
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
import { RocketOutlined } from '@ant-design/icons';
|
||||
import ROUTES from 'constants/routes';
|
||||
import {
|
||||
AreaChart,
|
||||
BarChart2,
|
||||
BellDot,
|
||||
BugIcon,
|
||||
@ -114,11 +113,6 @@ const menuItems: SidebarItem[] = [
|
||||
icon: <Route size={16} />,
|
||||
isBeta: true,
|
||||
},
|
||||
{
|
||||
key: ROUTES.USAGE_EXPLORER,
|
||||
label: 'Usage Explorer',
|
||||
icon: <AreaChart size={16} />,
|
||||
},
|
||||
{
|
||||
key: ROUTES.BILLING,
|
||||
label: 'Billing',
|
||||
|
Loading…
x
Reference in New Issue
Block a user