diff --git a/redisinsight/ui/src/components/bottom-group-components/components/bottom-group-minimized/BottomGroupMinimized.tsx b/redisinsight/ui/src/components/bottom-group-components/components/bottom-group-minimized/BottomGroupMinimized.tsx
index ea23981345..9a2f6265f0 100644
--- a/redisinsight/ui/src/components/bottom-group-components/components/bottom-group-minimized/BottomGroupMinimized.tsx
+++ b/redisinsight/ui/src/components/bottom-group-components/components/bottom-group-minimized/BottomGroupMinimized.tsx
@@ -109,7 +109,7 @@ const BottomGroupMinimized = () => {
)}
>
- Monitor
+ Profiler
diff --git a/redisinsight/ui/src/components/monitor/Monitor/Monitor.tsx b/redisinsight/ui/src/components/monitor/Monitor/Monitor.tsx
index 5104c88412..51c46fe9be 100644
--- a/redisinsight/ui/src/components/monitor/Monitor/Monitor.tsx
+++ b/redisinsight/ui/src/components/monitor/Monitor/Monitor.tsx
@@ -50,7 +50,7 @@ const Monitor = (props: Props) => {
data-testid="start-monitor"
/>
-
{(!isStarted || (!isRunning && !items?.length)) &&
}
- {!items?.length && isRunning &&
Monitor is started.
}
+ {!items?.length && isRunning &&
Profiler is started.
}
{isStarted && !!items?.length && (
@@ -92,7 +92,7 @@ const Monitor = (props: Props) => {
/>
{isMonitorStopped && (
- Monitor is stopped.
+ Profiler is stopped.
)}
>
diff --git a/redisinsight/ui/src/components/monitor/MonitorHeader/MonitorHeader.tsx b/redisinsight/ui/src/components/monitor/MonitorHeader/MonitorHeader.tsx
index 8f4e3f23fa..8accc5a123 100644
--- a/redisinsight/ui/src/components/monitor/MonitorHeader/MonitorHeader.tsx
+++ b/redisinsight/ui/src/components/monitor/MonitorHeader/MonitorHeader.tsx
@@ -53,7 +53,7 @@ const MonitorHeader = () => {
>
- Monitor
+ Profiler
{
diff --git a/redisinsight/ui/src/constants/cliOutput.tsx b/redisinsight/ui/src/constants/cliOutput.tsx
index 741557e1fa..dbd2c0bf1e 100644
--- a/redisinsight/ui/src/constants/cliOutput.tsx
+++ b/redisinsight/ui/src/constants/cliOutput.tsx
@@ -36,7 +36,7 @@ export const cliTexts = {
commandLine + unsupportedCommandTextWorkbench + commands,
REPEAT_COUNT_INVALID: 'Invalid repeat command option value',
CONNECTION_CLOSED: 'Client connection previously closed. Run the command after the connection is re-created.',
- MONITOR_COMMAND: 'Use the "Monitor" tool to see all the requests processed by the server.',
+ MONITOR_COMMAND: 'Use the "Profiler" tool to see all the requests processed by the server.',
UNABLE_TO_DECRYPT: 'Unable to decrypt. Check the system keychain or re-run the command.',
CLI_ERROR_MESSAGE: (message: string) => (
[