diff --git a/frontend/public/locales/en/titles.json b/frontend/public/locales/en/titles.json index 5ecb1acc38..9e4039a86b 100644 --- a/frontend/public/locales/en/titles.json +++ b/frontend/public/locales/en/titles.json @@ -69,5 +69,5 @@ "METRICS_EXPLORER": "SigNoz | Metrics Explorer", "METRICS_EXPLORER_EXPLORER": "SigNoz | Metrics Explorer", "METRICS_EXPLORER_VIEWS": "SigNoz | Metrics Explorer", - "API_MONITORING": "SigNoz | Third Party API" + "API_MONITORING": "SigNoz | External APIs" } diff --git a/frontend/src/container/MetricsApplication/Tabs/Overview/GraphControlsPanel/GraphControlsPanel.tsx b/frontend/src/container/MetricsApplication/Tabs/Overview/GraphControlsPanel/GraphControlsPanel.tsx index 9643e3fd8a..e84c44185f 100644 --- a/frontend/src/container/MetricsApplication/Tabs/Overview/GraphControlsPanel/GraphControlsPanel.tsx +++ b/frontend/src/container/MetricsApplication/Tabs/Overview/GraphControlsPanel/GraphControlsPanel.tsx @@ -47,7 +47,7 @@ function GraphControlsPanel({ onClick={onViewAPIMonitoringClick} style={{ color: Color.BG_VANILLA_100 }} > - View Third Party API + View External APIs )} diff --git a/frontend/src/container/SideNav/menuItems.tsx b/frontend/src/container/SideNav/menuItems.tsx index 6a8bb9ddab..b2d957e373 100644 --- a/frontend/src/container/SideNav/menuItems.tsx +++ b/frontend/src/container/SideNav/menuItems.tsx @@ -125,7 +125,7 @@ const menuItems: SidebarItem[] = [ }, { key: ROUTES.API_MONITORING, - label: 'Third Party API', + label: 'External APIs', icon: , isNew: true, },