diff --git a/content/develop/tools/insight/_index.md b/content/develop/tools/insight/_index.md
index 773d5ebcd2..ee1580f990 100644
--- a/content/develop/tools/insight/_index.md
+++ b/content/develop/tools/insight/_index.md
@@ -40,7 +40,7 @@ Redis Insight is a powerful tool for visualizing and optimizing data in Redis, m
* Use a form to enter your connection details and add any Redis database running anywhere (including Redis Open Source cluster or sentinel).
* Connect to a Redis Data Integration (RDI) management plane, create, test, and deploy RDI pipelines, and view RDI statistics.
-
+{{< image filename="images/ri/ri-databases.png" alt="The databases screen" >}}
{{< note >}}
When you add a Redis database for a particular user using the `username` and `password` fields, that user must be able to run the `INFO` command. See the [access control list (ACL) documentation]({{< relref "/operate/oss_and_stack/management/security/acl" >}}) for more information.
@@ -56,9 +56,15 @@ Currently, Redis Copilot provides two primary features: a general chatbot and a
**My data chatbot**: the context-aware chatbot available in Redis Insight lets you construct search queries using everyday language rather than requiring specific programming syntax. This feature lets you query and explore data easily and interactively without extensive technical knowledge.
+Before you can use Redis Copilot, you must first sign in and accept the terms of use. Click on the Redis Copilot icon in the top right corner of the Redis Insight window to sign in and accept the terms of use.
+
+{{< image filename="images/ri/ri-redis-copilot-icon.png" alt="The Redis Copilot icon" >}}
+
+{{< image filename="images/ri/ri-redis-copilot-signin.png" alt="The Redis Copilot sign in screen" >}}
+
Here's an example of using Redis Copilot to search data using a simple, natural language prompt.
-
+{{< image filename="images/ri/ri-redis-copilot-query.png" alt="An example of using Redis Copilot to search data" >}}
See the [Redis Insight Copilot FAQ]({{< relref "/develop/tools/insight/copilot-faq" >}}) for more information.
@@ -69,45 +75,47 @@ Redis Insight includes Redis Data Integration (RDI) connectivity, which allows y
### Browser
Browse, filter and visualize your key-value Redis data structures.
-* [CRUD](https://en.wikipedia.org/wiki/Create,_read,_update_and_delete) support for lists, hashes, strings, sets, sorted sets, and streams
-* CRUD support for [JSON]({{< relref "/develop/data-types/json/" >}})
-* Group keys according to their namespaces
-
-
+* [CRUD](https://en.wikipedia.org/wiki/Create,_read,_update_and_delete) support for lists, hashes, strings, sets, sorted sets, and streams.
+* CRUD support for [JSON]({{< relref "/develop/data-types/json/" >}}).
+* Group keys according to their namespaces.
* View, validate, and manage your key values in a human-readable format using formatters that prettify and highlight data in different formats (for example, Unicode, JSON, MessagePack, HEX, and ASCII) in the Browser tool.
-
+ {{< image filename="images/ri/ri-browser.png" alt="The Browser tool" >}}
### Profiler
-Analyze every command sent to Redis in real time.
+Analyze every command sent to Redis in real time. To use the profiler, click **Profiler** at the bottom left of the screen. It should reveal the profiler window, and there you can start the profiler by clicking on **Start Profiler**.
-
+{{< image filename="images/ri/ri-profiler.png" alt="The Profiler tool" >}}
### CLI
-The CLI is accessible at any time within the application.
-* Employs integrated help to deliver intuitive assistance
+The CLI is accessible at any time within the application. To use the CLI, click **>_ CLI** at the bottom left of the screen. It should reveal the CLI window, and there you can start typing Redis [commands]({{< relref "/commands" >}}).
+
+The CLI includes the following features:
+
+* Employs integrated help to deliver intuitive assistance.
* Use together with a convenient command helper that lets you search and read on Redis commands.
-
+{{< image filename="images/ri/ri-cli.png" alt="The CLI tool" >}}
### Workbench
Workbench is an advanced command line interface with intelligent command auto-complete and complex data visualization support.
+
* Built-in guides: you can conveniently discover Redis and Redis Open Source features using the built-in guides.
* Command auto-complete support for all features in Redis and Redis Open Source.
* Advanced, schema-aware auto-complete for Redis Query Engine, which provides for faster query building with context-sensitive suggestions that recognize indexes, schemas, and fields based on your current query. Start typing any Redis Query Engine command in to try this feature. See below for an example of an in-progress `FT.SEARCH` command.
-
+{{< image filename="images/ri/ri-workbench.png" alt="An example of an in-progress FT.SEARCH command" >}}
Workbench also includes:
* Visualizations of your indexes, queries, and aggregations.
* Visualizations of your [time series]({{< relref "/develop/data-types/timeseries/" >}}) data.
-
+{{< image filename="images/ri/ri-workbench-timeseries.png" alt="Visualizations of time series data" >}}
## Tools
@@ -119,7 +127,7 @@ Use the database analysis tool to optimize the performance and memory usage of y
The database analysis tool will only analyze up to 10,000 keys. If more than 10,000 keys are present, the tool will attempt to use extrapolation in its analysis.
{{< /note >}}
-
+{{< image filename="images/ri/ri-analysis.png" alt="The database analysis tool" >}}
### Redis Streams support
@@ -127,13 +135,13 @@ Create and manage streams by adding, removing, and filtering entries per timesta
View and manage the list of consumer groups. See existing consumers in a given consumer name as well as the last messages delivered to them. Inspect the list of pending messages, explicitly acknowledge the processed items, or claim unprocessed messages via Redis Insight.
-
+{{< image filename="images/ri/ri-streams.png" alt="Redis Streams support" >}}
### Search features
If you're using the indexing, querying, or full-text search features of Redis Open Source, Redis Insight provides UI controls to quickly and conveniently run search queries against a preselected index. You can also create a secondary index of your data in a dedicated pane.
-
+{{< image filename="images/ri/ri-search.png" alt="Search features" >}}
### Bulk actions
@@ -142,13 +150,13 @@ Easily and quickly delete multiple keys of the same type and/or with the same ke
When the bulk deletion is completed, Redis Insight displays the results of this operation with the number of keys processed and the time taken to delete the keys in bulk.
Use bulk deletion to optimize the usage of your database based on the results from the Redis database analysis.
-
+{{< image filename="images/ri/ri-bulk-actions.png" alt="Bulk actions" >}}
### Slow Log
The Slow Log tool displays the list of logs captured by the SLOWLOG command to analyze all commands that exceed a specified runtime, which helps with troubleshooting performance issues. Specify both the runtime and the maximum length of Slowlog (which are server configurations) to configure the list of commands logged and set the auto-refresh interval to automatically update the list of commands displayed.
-
+{{< image filename="images/ri/ri-slow-log.png" alt="Slow Log" >}}
## Plugins
diff --git a/content/develop/tools/insight/images/Browser.png b/content/develop/tools/insight/images/Browser.png
deleted file mode 100644
index 0c935931b8..0000000000
Binary files a/content/develop/tools/insight/images/Browser.png and /dev/null differ
diff --git a/content/develop/tools/insight/images/CLI.png b/content/develop/tools/insight/images/CLI.png
deleted file mode 100644
index b1b76248a0..0000000000
Binary files a/content/develop/tools/insight/images/CLI.png and /dev/null differ
diff --git a/content/develop/tools/insight/images/Databases.png b/content/develop/tools/insight/images/Databases.png
deleted file mode 100644
index 038560a79e..0000000000
Binary files a/content/develop/tools/insight/images/Databases.png and /dev/null differ
diff --git a/content/develop/tools/insight/images/Profiler.png b/content/develop/tools/insight/images/Profiler.png
deleted file mode 100644
index 4469c370d6..0000000000
Binary files a/content/develop/tools/insight/images/Profiler.png and /dev/null differ
diff --git a/content/develop/tools/insight/images/Workbench_Graph.png b/content/develop/tools/insight/images/Workbench_Graph.png
deleted file mode 100644
index a0699a337d..0000000000
Binary files a/content/develop/tools/insight/images/Workbench_Graph.png and /dev/null differ
diff --git a/content/develop/tools/insight/images/Workbench_Search.png b/content/develop/tools/insight/images/Workbench_Search.png
deleted file mode 100644
index 0bef99640f..0000000000
Binary files a/content/develop/tools/insight/images/Workbench_Search.png and /dev/null differ
diff --git a/content/develop/tools/insight/images/Workbench_TimeSeries.png b/content/develop/tools/insight/images/Workbench_TimeSeries.png
deleted file mode 100644
index 01400cfa17..0000000000
Binary files a/content/develop/tools/insight/images/Workbench_TimeSeries.png and /dev/null differ
diff --git a/content/develop/tools/insight/images/bulk_actions.png b/content/develop/tools/insight/images/bulk_actions.png
deleted file mode 100644
index dbee27c6e3..0000000000
Binary files a/content/develop/tools/insight/images/bulk_actions.png and /dev/null differ
diff --git a/content/develop/tools/insight/images/copilot-example.png b/content/develop/tools/insight/images/copilot-example.png
deleted file mode 100644
index 375021cef4..0000000000
Binary files a/content/develop/tools/insight/images/copilot-example.png and /dev/null differ
diff --git a/content/develop/tools/insight/images/data_formatting.png b/content/develop/tools/insight/images/data_formatting.png
deleted file mode 100644
index fdee291d4a..0000000000
Binary files a/content/develop/tools/insight/images/data_formatting.png and /dev/null differ
diff --git a/content/develop/tools/insight/images/database_analysis.png b/content/develop/tools/insight/images/database_analysis.png
deleted file mode 100644
index 226ad90deb..0000000000
Binary files a/content/develop/tools/insight/images/database_analysis.png and /dev/null differ
diff --git a/content/develop/tools/insight/images/ico-redisinsight.svg b/content/develop/tools/insight/images/ico-redisinsight.svg
deleted file mode 100644
index 8837f12d09..0000000000
--- a/content/develop/tools/insight/images/ico-redisinsight.svg
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
diff --git a/content/develop/tools/insight/images/ri-rdi-add-endpoint1.png b/content/develop/tools/insight/images/ri-rdi-add-endpoint1.png
deleted file mode 100644
index 4813e1a188..0000000000
Binary files a/content/develop/tools/insight/images/ri-rdi-add-endpoint1.png and /dev/null differ
diff --git a/content/develop/tools/insight/images/search.png b/content/develop/tools/insight/images/search.png
deleted file mode 100644
index da44dcccd7..0000000000
Binary files a/content/develop/tools/insight/images/search.png and /dev/null differ
diff --git a/content/develop/tools/insight/images/slowlog.png b/content/develop/tools/insight/images/slowlog.png
deleted file mode 100644
index 2cb1ebc717..0000000000
Binary files a/content/develop/tools/insight/images/slowlog.png and /dev/null differ
diff --git a/content/develop/tools/insight/images/streams.png b/content/develop/tools/insight/images/streams.png
deleted file mode 100644
index 360601a028..0000000000
Binary files a/content/develop/tools/insight/images/streams.png and /dev/null differ
diff --git a/content/develop/tools/insight/tutorials/insight-stream-consumer.md b/content/develop/tools/insight/insight-stream-consumer.md
similarity index 95%
rename from content/develop/tools/insight/tutorials/insight-stream-consumer.md
rename to content/develop/tools/insight/insight-stream-consumer.md
index 83b8685fbb..45458b9154 100644
--- a/content/develop/tools/insight/tutorials/insight-stream-consumer.md
+++ b/content/develop/tools/insight/insight-stream-consumer.md
@@ -1,5 +1,7 @@
---
-aliases: /develop/connect/insight/tutorials/insight-stream-consumer
+aliases:
+- /develop/connect/insight/tutorials/insight-stream-consumer
+- /develop/tools/insight/tutorials/insight-stream-consumer
categories:
- docs
- develop
@@ -31,8 +33,7 @@ In this stream, sensors are considered _producers_, which broadcast data.
A _consumer_ reads from the stream and does some work on it.
For example, if the temperature is above a certain threshold, it puts a message out to turn on the air conditioner in that unit or notify the maintenance.
-
-
+{{< image filename="images/ri/stream.png" alt="A stream that models temperature and humidity sensors." >}}
It is possible to have multiple consumers doing different jobs, one measuring humidity, and another taking temperature measurements over periods of time.
Redis stores a copy of the entire dataset in memory, which is a finite resource.
@@ -51,7 +52,7 @@ There are a couple of ways of retrieving things. You can retrieve entries by tim
A more realistic use case would be a system with many temperature sensors whose data Redis puts in a stream, records the time they arrive, and orders them.
-
+{{< image filename="images/ri/consumer.png" alt="A stream that models temperature and humidity sensors." >}}
On the right side we have two consumers that read the stream. One of them is alerting if the temperature is over a certain number and texting the maintenance crew that they need to do something, and the other is a data warehouse that is taking the data and putting it into a database.
@@ -193,8 +194,7 @@ Note that in this model, each consumer instance does not receive all of the entr
2. Select `localhost:6379`
3. Select **STREAM**. Optionally, select full screen from the upper right corner to expand the view.
-
-
+{{< image filename="../images/ri/ri-streams-cg.png" alt="The Streams view in Redis Insight." >}}
You can now toggle between **Stream** and **Consumer Groups** views to see your data.
As mentioned earlier in this topic, a stream is an append-only log so you can't modify the contents of an entry, but you can delete an entire entry.
@@ -211,4 +211,4 @@ Use streams for auditing and processing events in banking, gaming, supply chain,
## Related topics
- [Redis Streams]({{< relref "/develop/data-types/streams" >}})
-- [Introducing Redis Streams with Redis Insight, node.js, and Python](https://www.youtube.com/watch?v=q2UOkQmIo9Q) (video)
\ No newline at end of file
+- [Introducing Redis Streams with Redis Insight, node.js, and Python](https://www.youtube.com/watch?v=q2UOkQmIo9Q) (video)
diff --git a/content/develop/tools/insight/rdi-connector.md b/content/develop/tools/insight/rdi-connector.md
index 6271e95086..e0382dd768 100644
--- a/content/develop/tools/insight/rdi-connector.md
+++ b/content/develop/tools/insight/rdi-connector.md
@@ -22,25 +22,29 @@ You can read more about RDI's ingest architecture [on these pages]({{< relref "/
As of version `2.54.0`, Redis Insight includes RDI connectivity, which allows you to connect to [RDI management planes]({{< relref "/integrate/redis-data-integration/architecture" >}}#how-rdi-is-deployed), create, test, and deploy [RDI pipelines]({{< relref "/integrate/redis-data-integration/data-pipelines" >}}), and view RDI statistics.
+{{< note >}}
+Most of the screenshots on this page were taken using a previous version of Redis Insight. The functionality is the same in the current version, but the user interface has changed.
+{{< /note >}}
+
## Connect
-Open Redis Insight, click on the **Redis Data Integration** tab, and then click on one of the two **+ Add RDI Endpoint** buttons as shown below.
+Open Redis Insight and then click on the **Redis Data Integration** tab, which looks like this:
-
+{{< image filename="images/ri/ri-rdi-main.png" alt="Redis Data Integration tab" >}}
-Enter your RDI server details in the provided dialog. The **RDI Alias** field can be any name you choose and it will be used as the primary name in the **RDI Instances** list view.
+Next, click on **Let's connect to RDI**, which will open the **Add RDI Endpoint** dialog.
-
+{{< image filename="images/ri/ri-rdi-add-ep.png" alt="Connect to RDI" >}}
-You'll receive notification if your connection is successful.
+Enter your RDI server details into the dialog. The **RDI Alias** field can be any name you choose and it will be used as the primary name in the **RDI Instances** list view. You'll receive notification if your connection is successful.
-
+{{< image filename="images/ri/ri-rdi-endpoint-added.png" alt="RDI endpoint added" >}}
## Create, test, and deploy RDI pipelines
Begin by clicking the alias of your newly configured RDI endpoint in the **RDI Instances** view (for example, **Test connection** in the above image). You'll see the following dialog in the center of the screen.
-
+{{< image filename="images/ri/ri-rdi-pl-start.png" alt="Start with your pipeline" >}}
Choose from the following options:
@@ -52,7 +56,7 @@ Each of these menu options will be described in more detail in subsequent sectio
There are also equivalent buttons at the top of the editor pane for the first two of these functions.
-
+{{< image filename="images/ri/ri-rdi-pl-editor-minibuttons.png" alt="Editor minibuttons" >}}
If you'd rather start with an empty configuration, exit the dialog, which will leave you in the **Configuration file** editor where you can begin editing the configuration component of your pipeline; the `config.yaml` file.
@@ -60,7 +64,7 @@ If you'd rather start with an empty configuration, exit the dialog, which will l
Click the **Download from server** button in the **Start with your pipeline** dialog to download a previously defined pipeline from your RDI configuration. The downloaded pipeline will be displayed in the **Pipeline management** pane. As shown below, each pipeline consists of a configuration file (`config.yaml`) and zero or more `job` YAML files. The configuration file will be displayed in the center editor panel.
-
+{{< image filename="images/ri/ri-rdi-pl-dl.png" alt="Download a pipeline" >}}
### Upload a pipeline from your local machine
@@ -78,7 +82,7 @@ The `config.yaml` file, your configuration YAML file, is required. The `jobs` di
Click the **Create new pipeline** button in the **Start with your pipeline** dialog to create a new pipeline using the built-in editors. After doing so, you'll enter the **Configuration file** editor and you'll see an open **Select a template** dialog in the upper right-hand corner of the editor.
-
+{{< image filename="images/ri/ri-rdi-pl-editor-dlg.png" alt="Select a template" >}}
Make your selections in the provided fields:
@@ -99,13 +103,13 @@ After you make your selections and click **Apply**, Redis Insight will populate
See the [RDI documentation]({{< relref "/integrate/redis-data-integration/reference/config-yaml-reference" >}}) for information about required fields.
-
+{{< image filename="images/ri/ri-rdi-pl-editor-template.png" alt="Editor template" >}}
### Test your target database connection
After you've created your **Target database configuration**, you can test the connection using the **Test Connection** button in the bottom right of the editor pane. A new panel will open to the right containing the test results as shown below.
-
+{{< image filename="images/ri/ri-rdi-pl-test-cxn.png" alt="Test connection" >}}
### Create a new transformation job file using the built-in editor
@@ -119,7 +123,7 @@ The options listed in the above menu depend on the capabilities of your RDI conf
The [RDI documentation]({{< relref "/integrate/redis-data-integration/data-pipelines/transform-examples" >}}) has several examples of transformation jobs that can help get you started. Note: RDI uses a very specific YAML format for job files. See [here]({{< relref "/integrate/redis-data-integration/data-pipelines" >}}#job-files) for more information.
-
+{{< image filename="images/ri/ri-rdi-job-editor-template.png" alt="Job editor template" >}}
## Use the built-in editors
@@ -130,13 +134,13 @@ The Redis Insight pipeline file editors are context-aware. They provide auto-com
If you decided to write your own configuration pipeline without using a template, you would see auto-completion prompts such as the one shown below.
-
+{{< image filename="images/ri/ri-rdi-pl-editor-autoc.png" alt="Editor autocompletion" >}}
While this isn't a replacement for the RDI documentation, it can help speed you along after you have basic familiarity with the building blocks of RDI pipeline files.
Redis Insight will also highlight any errors as shown below.
-
+{{< image filename="images/ri/ri-rdi-pl-editor-errs.png" alt="Editor errors" >}}
Here's an example showing the SQL and JMESPath editor pane. Note the toggle in the bottom left corner of this editor pane. Clicking it allows you to select from:
@@ -145,12 +149,12 @@ Here's an example showing the SQL and JMESPath editor pane. Note the toggle in t
After constructing your SQLite or JMESPath code, copy it to the main editor window. Here's a [reference]({{< relref "/integrate/redis-data-integration/reference/jmespath-custom-functions" >}}) to the supported JMESPath extension functions and expressions that you can use in your job files.
-
+{{< image filename="images/ri/ri-rdi-pl-editor-sql-minie.png" alt="Editor SQL minieditor" >}}
{{< warning >}}
Any changes you make in the editors will be lost if you exit Redis Insight without saving your work. To save any changes you made to your pipeline files, deploy them to your RDI server (see below) or download the modified files as a zip file to your local disk using the **Download** button in the top right of the RDI window. Redis Insight will prepend a green circle on unsaved/undeployed files.
-
+{{< image filename="images/ri/ri-rdi-pl-unsaved.png" alt="Unsaved pipeline" >}}
{{< /warning >}}
## Dry run transformation job pipelines
@@ -164,7 +168,7 @@ There are two tabs in the **Results** section:
Here's an example.
-
+{{< image filename="images/ri/ri-rdi-pl-dryrun.png" alt="Dry run" >}}
## Deploy pipelines and add target DB to Redis Insight
@@ -177,7 +181,7 @@ Doing so will allow you to monitor key creation from your RDI pipeline over time
You can view various statistics for your RDI deployment. To do so, click the **Pipeline Status** menu button in the left side menu panel.
-
+{{< image filename="images/ri/ri-rdi-stats-view.png" alt="RDI statistics" >}}
Each statistics section is either static or refreshed automatically at a particular interval that you set.
The first section, **Processing performance information** is set by default to refresh every 5 seconds.
diff --git a/content/develop/tools/insight/tutorials/images/insight_streams.png b/content/develop/tools/insight/tutorials/images/insight_streams.png
deleted file mode 100644
index 68cdc2de4b..0000000000
Binary files a/content/develop/tools/insight/tutorials/images/insight_streams.png and /dev/null differ
diff --git a/content/operate/oss_and_stack/stack-with-enterprise/deprecated-features/graph/graph-quickstart.md b/content/operate/oss_and_stack/stack-with-enterprise/deprecated-features/graph/graph-quickstart.md
index dd0283673a..d086bb2e5d 100644
--- a/content/operate/oss_and_stack/stack-with-enterprise/deprecated-features/graph/graph-quickstart.md
+++ b/content/operate/oss_and_stack/stack-with-enterprise/deprecated-features/graph/graph-quickstart.md
@@ -219,9 +219,7 @@ You can use the [Redis Insight]({{< relref "/develop/tools/insight" >}}) workben
1. Connect to your database with Redis Insight. You can [connect manually]({{< relref "develop/tools/insight#add-a-standalone-redis-database" >}}) or use the [auto-discovery]({{< relref "develop/tools/insight#auto-discovery-for-redis-cloud-databases" >}}) feature.
-1. Select the **Workbench** button:
-
- {{}}
+1. Select the **Workbench** button.
1. Enter a graph query in the text editor.
@@ -231,9 +229,7 @@ You can use the [Redis Insight]({{< relref "/develop/tools/insight" >}}) workben
GRAPH.QUERY MotoGP "MATCH (n) RETURN n"
```
-1. Select **Run**:
-
- {{}}
+1. Select **Run** to run the query.
After you run a query, the output log displays a visual representation of your graph's nodes and relationships:
diff --git a/static/images/ri/add-database-button-screen.png b/static/images/ri/add-database-button-screen.png
deleted file mode 100644
index a7f779c130..0000000000
Binary files a/static/images/ri/add-database-button-screen.png and /dev/null differ
diff --git a/static/images/ri/add-db-added-screen.png b/static/images/ri/add-db-added-screen.png
deleted file mode 100644
index 1e0d427507..0000000000
Binary files a/static/images/ri/add-db-added-screen.png and /dev/null differ
diff --git a/static/images/ri/add-db-cluster-seed-nodes-screen.png b/static/images/ri/add-db-cluster-seed-nodes-screen.png
deleted file mode 100644
index 2ba5a736f5..0000000000
Binary files a/static/images/ri/add-db-cluster-seed-nodes-screen.png and /dev/null differ
diff --git a/static/images/ri/add-db-form-screen.png b/static/images/ri/add-db-form-screen.png
deleted file mode 100644
index b75b7c7366..0000000000
Binary files a/static/images/ri/add-db-form-screen.png and /dev/null differ
diff --git a/static/images/ri/add-db-menu-screen.png b/static/images/ri/add-db-menu-screen.png
deleted file mode 100644
index 45701b5579..0000000000
Binary files a/static/images/ri/add-db-menu-screen.png and /dev/null differ
diff --git a/static/images/ri/add-db-sentinel-form-screen.png b/static/images/ri/add-db-sentinel-form-screen.png
deleted file mode 100644
index 8b7b16d978..0000000000
Binary files a/static/images/ri/add-db-sentinel-form-screen.png and /dev/null differ
diff --git a/static/images/ri/add-db-tls-ca-cert-screen.png b/static/images/ri/add-db-tls-ca-cert-screen.png
deleted file mode 100644
index 7dff322310..0000000000
Binary files a/static/images/ri/add-db-tls-ca-cert-screen.png and /dev/null differ
diff --git a/static/images/ri/add-db-tls-client-auth-screen.png b/static/images/ri/add-db-tls-client-auth-screen.png
deleted file mode 100644
index 3ce79101cd..0000000000
Binary files a/static/images/ri/add-db-tls-client-auth-screen.png and /dev/null differ
diff --git a/static/images/ri/add-db-tls-screen.png b/static/images/ri/add-db-tls-screen.png
deleted file mode 100644
index 62570acec8..0000000000
Binary files a/static/images/ri/add-db-tls-screen.png and /dev/null differ
diff --git a/static/images/ri/add_column.png b/static/images/ri/add_column.png
deleted file mode 100644
index ad741875a1..0000000000
Binary files a/static/images/ri/add_column.png and /dev/null differ
diff --git a/static/images/ri/add_redis_instance_localhost.png b/static/images/ri/add_redis_instance_localhost.png
deleted file mode 100644
index 974b9733bd..0000000000
Binary files a/static/images/ri/add_redis_instance_localhost.png and /dev/null differ
diff --git a/static/images/ri/browser.png b/static/images/ri/browser.png
deleted file mode 100644
index 8348ea395e..0000000000
Binary files a/static/images/ri/browser.png and /dev/null differ
diff --git a/static/images/ri/cli-keybindings.png b/static/images/ri/cli-keybindings.png
deleted file mode 100644
index 622d0bae13..0000000000
Binary files a/static/images/ri/cli-keybindings.png and /dev/null differ
diff --git a/static/images/ri/cli.png b/static/images/ri/cli.png
deleted file mode 100644
index 6650eada97..0000000000
Binary files a/static/images/ri/cli.png and /dev/null differ
diff --git a/static/images/ri/cluster-management.png b/static/images/ri/cluster-management.png
deleted file mode 100644
index e010556a58..0000000000
Binary files a/static/images/ri/cluster-management.png and /dev/null differ
diff --git a/static/images/ri/configuration.png b/static/images/ri/configuration.png
deleted file mode 100644
index e0f080d9bd..0000000000
Binary files a/static/images/ri/configuration.png and /dev/null differ
diff --git a/static/images/ri/configuration_popup.png b/static/images/ri/configuration_popup.png
deleted file mode 100644
index 8020af89cf..0000000000
Binary files a/static/images/ri/configuration_popup.png and /dev/null differ
diff --git a/content/develop/tools/insight/tutorials/images/consumer.png b/static/images/ri/consumer.png
similarity index 100%
rename from content/develop/tools/insight/tutorials/images/consumer.png
rename to static/images/ri/consumer.png
diff --git a/static/images/ri/create-stack.png b/static/images/ri/create-stack.png
deleted file mode 100644
index 92f8a7f655..0000000000
Binary files a/static/images/ri/create-stack.png and /dev/null differ
diff --git a/static/images/ri/create_admin_account.png b/static/images/ri/create_admin_account.png
deleted file mode 100644
index ec1fe20878..0000000000
Binary files a/static/images/ri/create_admin_account.png and /dev/null differ
diff --git a/static/images/ri/icon-run-command.png b/static/images/ri/icon-run-command.png
deleted file mode 100644
index 55308f0d2a..0000000000
Binary files a/static/images/ri/icon-run-command.png and /dev/null differ
diff --git a/static/images/ri/icon-workbench.png b/static/images/ri/icon-workbench.png
deleted file mode 100644
index 4393b57f58..0000000000
Binary files a/static/images/ri/icon-workbench.png and /dev/null differ
diff --git a/static/images/ri/instance_overview_page.png b/static/images/ri/instance_overview_page.png
deleted file mode 100644
index c2225e1bca..0000000000
Binary files a/static/images/ri/instance_overview_page.png and /dev/null differ
diff --git a/static/images/ri/java-serialized-objects-noprettyprint.png b/static/images/ri/java-serialized-objects-noprettyprint.png
deleted file mode 100644
index f20f992f63..0000000000
Binary files a/static/images/ri/java-serialized-objects-noprettyprint.png and /dev/null differ
diff --git a/static/images/ri/java-serialized-objects.png b/static/images/ri/java-serialized-objects.png
deleted file mode 100644
index 874ceb6ecc..0000000000
Binary files a/static/images/ri/java-serialized-objects.png and /dev/null differ
diff --git a/static/images/ri/keyspace_summary.png b/static/images/ri/keyspace_summary.png
deleted file mode 100644
index 431b4368fe..0000000000
Binary files a/static/images/ri/keyspace_summary.png and /dev/null differ
diff --git a/static/images/ri/memory_overview.png b/static/images/ri/memory_overview.png
deleted file mode 100644
index dde898fa49..0000000000
Binary files a/static/images/ri/memory_overview.png and /dev/null differ
diff --git a/static/images/ri/memory_recommendations.png b/static/images/ri/memory_recommendations.png
deleted file mode 100644
index 74e6f4af2d..0000000000
Binary files a/static/images/ri/memory_recommendations.png and /dev/null differ
diff --git a/static/images/ri/memory_usage_by_key.png b/static/images/ri/memory_usage_by_key.png
deleted file mode 100644
index 7a7f76f784..0000000000
Binary files a/static/images/ri/memory_usage_by_key.png and /dev/null differ
diff --git a/static/images/ri/online_memory_analysis.png b/static/images/ri/online_memory_analysis.png
deleted file mode 100644
index 83eef418f7..0000000000
Binary files a/static/images/ri/online_memory_analysis.png and /dev/null differ
diff --git a/static/images/ri/overview page.png b/static/images/ri/overview page.png
deleted file mode 100644
index 4e8f7739c7..0000000000
Binary files a/static/images/ri/overview page.png and /dev/null differ
diff --git a/static/images/ri/profile.png b/static/images/ri/profile.png
deleted file mode 100644
index 932cf3e4e3..0000000000
Binary files a/static/images/ri/profile.png and /dev/null differ
diff --git a/static/images/ri/rc-step-2.png b/static/images/ri/rc-step-2.png
deleted file mode 100644
index 169dbb2fdf..0000000000
Binary files a/static/images/ri/rc-step-2.png and /dev/null differ
diff --git a/static/images/ri/rc-step-3.png b/static/images/ri/rc-step-3.png
deleted file mode 100644
index 9325f8741b..0000000000
Binary files a/static/images/ri/rc-step-3.png and /dev/null differ
diff --git a/static/images/ri/rc-step-4.png b/static/images/ri/rc-step-4.png
deleted file mode 100644
index 16597b58ac..0000000000
Binary files a/static/images/ri/rc-step-4.png and /dev/null differ
diff --git a/static/images/ri/rc-step-5.png b/static/images/ri/rc-step-5.png
deleted file mode 100644
index 0eb3377f73..0000000000
Binary files a/static/images/ri/rc-step-5.png and /dev/null differ
diff --git a/static/images/ri/rc-step-6.png b/static/images/ri/rc-step-6.png
deleted file mode 100644
index aa2a54abc1..0000000000
Binary files a/static/images/ri/rc-step-6.png and /dev/null differ
diff --git a/static/images/ri/rc-step-7.png b/static/images/ri/rc-step-7.png
deleted file mode 100644
index 759bccef9b..0000000000
Binary files a/static/images/ri/rc-step-7.png and /dev/null differ
diff --git a/static/images/ri/rc-step-8.png b/static/images/ri/rc-step-8.png
deleted file mode 100644
index c5add43c21..0000000000
Binary files a/static/images/ri/rc-step-8.png and /dev/null differ
diff --git a/static/images/ri/rdbtools-for-mac.png b/static/images/ri/rdbtools-for-mac.png
deleted file mode 100644
index 4e8bb2c6a4..0000000000
Binary files a/static/images/ri/rdbtools-for-mac.png and /dev/null differ
diff --git a/static/images/ri/re-step-1.png b/static/images/ri/re-step-1.png
deleted file mode 100644
index 142f517779..0000000000
Binary files a/static/images/ri/re-step-1.png and /dev/null differ
diff --git a/static/images/ri/re-step-4.png b/static/images/ri/re-step-4.png
deleted file mode 100644
index 034462e267..0000000000
Binary files a/static/images/ri/re-step-4.png and /dev/null differ
diff --git a/static/images/ri/re-step-5.png b/static/images/ri/re-step-5.png
deleted file mode 100644
index 010d76cfe2..0000000000
Binary files a/static/images/ri/re-step-5.png and /dev/null differ
diff --git a/static/images/ri/redisinsight.png b/static/images/ri/redisinsight.png
deleted file mode 100644
index 02afb38eba..0000000000
Binary files a/static/images/ri/redisinsight.png and /dev/null differ
diff --git a/static/images/ri/ri-analysis.png b/static/images/ri/ri-analysis.png
new file mode 100644
index 0000000000..61caa43ad5
Binary files /dev/null and b/static/images/ri/ri-analysis.png differ
diff --git a/static/images/ri/ri-browser.png b/static/images/ri/ri-browser.png
new file mode 100644
index 0000000000..455ca9f278
Binary files /dev/null and b/static/images/ri/ri-browser.png differ
diff --git a/static/images/ri/ri-bulk-actions.png b/static/images/ri/ri-bulk-actions.png
new file mode 100644
index 0000000000..7c4dacb824
Binary files /dev/null and b/static/images/ri/ri-bulk-actions.png differ
diff --git a/static/images/ri/ri-cli.png b/static/images/ri/ri-cli.png
new file mode 100644
index 0000000000..400e04ec18
Binary files /dev/null and b/static/images/ri/ri-cli.png differ
diff --git a/static/images/ri/ri-databases.png b/static/images/ri/ri-databases.png
new file mode 100644
index 0000000000..d8a36ca2f4
Binary files /dev/null and b/static/images/ri/ri-databases.png differ
diff --git a/static/images/ri/ri-profiler.png b/static/images/ri/ri-profiler.png
new file mode 100644
index 0000000000..b517e5523f
Binary files /dev/null and b/static/images/ri/ri-profiler.png differ
diff --git a/content/develop/tools/insight/images/ri-rdi-add-endpoint2.png b/static/images/ri/ri-rdi-add-endpoint2.png
similarity index 100%
rename from content/develop/tools/insight/images/ri-rdi-add-endpoint2.png
rename to static/images/ri/ri-rdi-add-endpoint2.png
diff --git a/static/images/ri/ri-rdi-add-ep.png b/static/images/ri/ri-rdi-add-ep.png
new file mode 100644
index 0000000000..5896fdeda9
Binary files /dev/null and b/static/images/ri/ri-rdi-add-ep.png differ
diff --git a/content/develop/tools/insight/images/ri-rdi-endpoint-added.png b/static/images/ri/ri-rdi-endpoint-added.png
similarity index 100%
rename from content/develop/tools/insight/images/ri-rdi-endpoint-added.png
rename to static/images/ri/ri-rdi-endpoint-added.png
diff --git a/content/develop/tools/insight/images/ri-rdi-job-editor-template.png b/static/images/ri/ri-rdi-job-editor-template.png
similarity index 100%
rename from content/develop/tools/insight/images/ri-rdi-job-editor-template.png
rename to static/images/ri/ri-rdi-job-editor-template.png
diff --git a/static/images/ri/ri-rdi-main.png b/static/images/ri/ri-rdi-main.png
new file mode 100644
index 0000000000..78a92c3067
Binary files /dev/null and b/static/images/ri/ri-rdi-main.png differ
diff --git a/content/develop/tools/insight/images/ri-rdi-pl-dl.png b/static/images/ri/ri-rdi-pl-dl.png
similarity index 100%
rename from content/develop/tools/insight/images/ri-rdi-pl-dl.png
rename to static/images/ri/ri-rdi-pl-dl.png
diff --git a/content/develop/tools/insight/images/ri-rdi-pl-dryrun.png b/static/images/ri/ri-rdi-pl-dryrun.png
similarity index 100%
rename from content/develop/tools/insight/images/ri-rdi-pl-dryrun.png
rename to static/images/ri/ri-rdi-pl-dryrun.png
diff --git a/content/develop/tools/insight/images/ri-rdi-pl-editor-autoc.png b/static/images/ri/ri-rdi-pl-editor-autoc.png
similarity index 100%
rename from content/develop/tools/insight/images/ri-rdi-pl-editor-autoc.png
rename to static/images/ri/ri-rdi-pl-editor-autoc.png
diff --git a/content/develop/tools/insight/images/ri-rdi-pl-editor-dlg.png b/static/images/ri/ri-rdi-pl-editor-dlg.png
similarity index 100%
rename from content/develop/tools/insight/images/ri-rdi-pl-editor-dlg.png
rename to static/images/ri/ri-rdi-pl-editor-dlg.png
diff --git a/content/develop/tools/insight/images/ri-rdi-pl-editor-errs.png b/static/images/ri/ri-rdi-pl-editor-errs.png
similarity index 100%
rename from content/develop/tools/insight/images/ri-rdi-pl-editor-errs.png
rename to static/images/ri/ri-rdi-pl-editor-errs.png
diff --git a/content/develop/tools/insight/images/ri-rdi-pl-editor-minibuttons.png b/static/images/ri/ri-rdi-pl-editor-minibuttons.png
similarity index 100%
rename from content/develop/tools/insight/images/ri-rdi-pl-editor-minibuttons.png
rename to static/images/ri/ri-rdi-pl-editor-minibuttons.png
diff --git a/content/develop/tools/insight/images/ri-rdi-pl-editor-sql-minie.png b/static/images/ri/ri-rdi-pl-editor-sql-minie.png
similarity index 100%
rename from content/develop/tools/insight/images/ri-rdi-pl-editor-sql-minie.png
rename to static/images/ri/ri-rdi-pl-editor-sql-minie.png
diff --git a/content/develop/tools/insight/images/ri-rdi-pl-editor-template.png b/static/images/ri/ri-rdi-pl-editor-template.png
similarity index 100%
rename from content/develop/tools/insight/images/ri-rdi-pl-editor-template.png
rename to static/images/ri/ri-rdi-pl-editor-template.png
diff --git a/content/develop/tools/insight/images/ri-rdi-pl-start.png b/static/images/ri/ri-rdi-pl-start.png
similarity index 100%
rename from content/develop/tools/insight/images/ri-rdi-pl-start.png
rename to static/images/ri/ri-rdi-pl-start.png
diff --git a/content/develop/tools/insight/images/ri-rdi-pl-test-cxn.png b/static/images/ri/ri-rdi-pl-test-cxn.png
similarity index 100%
rename from content/develop/tools/insight/images/ri-rdi-pl-test-cxn.png
rename to static/images/ri/ri-rdi-pl-test-cxn.png
diff --git a/content/develop/tools/insight/images/ri-rdi-pl-unsaved.png b/static/images/ri/ri-rdi-pl-unsaved.png
similarity index 100%
rename from content/develop/tools/insight/images/ri-rdi-pl-unsaved.png
rename to static/images/ri/ri-rdi-pl-unsaved.png
diff --git a/content/develop/tools/insight/images/ri-rdi-stats-view.png b/static/images/ri/ri-rdi-stats-view.png
similarity index 100%
rename from content/develop/tools/insight/images/ri-rdi-stats-view.png
rename to static/images/ri/ri-rdi-stats-view.png
diff --git a/static/images/ri/ri-redis-copilot-icon.png b/static/images/ri/ri-redis-copilot-icon.png
new file mode 100644
index 0000000000..92941b3719
Binary files /dev/null and b/static/images/ri/ri-redis-copilot-icon.png differ
diff --git a/static/images/ri/ri-redis-copilot-query.png b/static/images/ri/ri-redis-copilot-query.png
new file mode 100644
index 0000000000..b48ecf1862
Binary files /dev/null and b/static/images/ri/ri-redis-copilot-query.png differ
diff --git a/static/images/ri/ri-redis-copilot-signin.png b/static/images/ri/ri-redis-copilot-signin.png
new file mode 100644
index 0000000000..18a4034884
Binary files /dev/null and b/static/images/ri/ri-redis-copilot-signin.png differ
diff --git a/static/images/ri/ri-search.png b/static/images/ri/ri-search.png
new file mode 100644
index 0000000000..f8361a8526
Binary files /dev/null and b/static/images/ri/ri-search.png differ
diff --git a/static/images/ri/ri-slow-log.png b/static/images/ri/ri-slow-log.png
new file mode 100644
index 0000000000..28e4b9fb5a
Binary files /dev/null and b/static/images/ri/ri-slow-log.png differ
diff --git a/static/images/ri/ri-streams-cg.png b/static/images/ri/ri-streams-cg.png
new file mode 100644
index 0000000000..d2997e7fb0
Binary files /dev/null and b/static/images/ri/ri-streams-cg.png differ
diff --git a/static/images/ri/ri-streams.png b/static/images/ri/ri-streams.png
new file mode 100644
index 0000000000..9a64f4d4fe
Binary files /dev/null and b/static/images/ri/ri-streams.png differ
diff --git a/static/images/ri/ri-workbench-timeseries.png b/static/images/ri/ri-workbench-timeseries.png
new file mode 100644
index 0000000000..f189378965
Binary files /dev/null and b/static/images/ri/ri-workbench-timeseries.png differ
diff --git a/static/images/ri/ri-workbench.png b/static/images/ri/ri-workbench.png
new file mode 100644
index 0000000000..b045da53e9
Binary files /dev/null and b/static/images/ri/ri-workbench.png differ
diff --git a/static/images/ri/riproxypath.png b/static/images/ri/riproxypath.png
deleted file mode 100644
index 57a94efc2f..0000000000
Binary files a/static/images/ri/riproxypath.png and /dev/null differ
diff --git a/static/images/ri/s3-memory-analysis-dialog.png b/static/images/ri/s3-memory-analysis-dialog.png
deleted file mode 100644
index 5d17a9aaf5..0000000000
Binary files a/static/images/ri/s3-memory-analysis-dialog.png and /dev/null differ
diff --git a/static/images/ri/show_hide_columns.png b/static/images/ri/show_hide_columns.png
deleted file mode 100644
index 34114c1cd7..0000000000
Binary files a/static/images/ri/show_hide_columns.png and /dev/null differ
diff --git a/static/images/ri/slowlog.png b/static/images/ri/slowlog.png
deleted file mode 100644
index a7af8ddaf1..0000000000
Binary files a/static/images/ri/slowlog.png and /dev/null differ
diff --git a/static/images/ri/snapshot_processing_screen.png b/static/images/ri/snapshot_processing_screen.png
deleted file mode 100644
index 80f37a9188..0000000000
Binary files a/static/images/ri/snapshot_processing_screen.png and /dev/null differ
diff --git a/static/images/ri/stack-output.png b/static/images/ri/stack-output.png
deleted file mode 100644
index e653254878..0000000000
Binary files a/static/images/ri/stack-output.png and /dev/null differ
diff --git a/content/develop/tools/insight/tutorials/images/stream.png b/static/images/ri/stream.png
similarity index 100%
rename from content/develop/tools/insight/tutorials/images/stream.png
rename to static/images/ri/stream.png
diff --git a/static/images/ri/up-arrow.png b/static/images/ri/up-arrow.png
deleted file mode 100644
index d0687f632e..0000000000
Binary files a/static/images/ri/up-arrow.png and /dev/null differ