You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2023/04/05 14:20:17 UTC

[skywalking-booster-ui] branch main updated: Add Redis Menu (#253)

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-booster-ui.git


The following commit(s) were added to refs/heads/main by this push:
     new 8bb45bb  Add Redis Menu (#253)
8bb45bb is described below

commit 8bb45bb45371cafc6413ec7a22bd7cad2667a737
Author: yswdqz <74...@users.noreply.github.com>
AuthorDate: Wed Apr 5 22:20:11 2023 +0800

    Add Redis Menu (#253)
---
 src/locales/lang/en.ts      |  1 +
 src/locales/lang/es.ts      |  1 +
 src/locales/lang/zh.ts      |  1 +
 src/router/data/database.ts | 16 ++++++++++++++++
 4 files changed, 19 insertions(+)

diff --git a/src/locales/lang/en.ts b/src/locales/lang/en.ts
index a27fb70..119cbe3 100644
--- a/src/locales/lang/en.ts
+++ b/src/locales/lang/en.ts
@@ -384,5 +384,6 @@ const msg = {
   AWSCloudDynamoDB: "DynamoDB",
   AWSGateway: "AWS API Gateway",
   APIGateway: "API Gateway",
+  redis: "Redis",
 };
 export default msg;
diff --git a/src/locales/lang/es.ts b/src/locales/lang/es.ts
index 6d250ba..2e69f8f 100644
--- a/src/locales/lang/es.ts
+++ b/src/locales/lang/es.ts
@@ -383,5 +383,6 @@ const msg = {
   AWSCloudDynamoDB: "DynamoDB",
   AWSGateway: "AWS API Gateway",
   APIGateway: "API Gateway",
+  redis: "Redis",
 };
 export default msg;
diff --git a/src/locales/lang/zh.ts b/src/locales/lang/zh.ts
index 8fa4cb3..1dfd5af 100644
--- a/src/locales/lang/zh.ts
+++ b/src/locales/lang/zh.ts
@@ -381,5 +381,6 @@ const msg = {
   AWSCloudDynamoDB: "DynamoDB",
   AWSGateway: "AWS API Gateway",
   APIGateway: "API Gateway",
+  redis: "Redis",
 };
 export default msg;
diff --git a/src/router/data/database.ts b/src/router/data/database.ts
index e2b79cf..57a9d8b 100644
--- a/src/router/data/database.ts
+++ b/src/router/data/database.ts
@@ -74,6 +74,22 @@ export default [
           layer: "AWS_DYNAMODB",
         },
       },
+      {
+        path: "/redis",
+        name: "Redis",
+        meta: {
+          title: "redis",
+          layer: "REDIS",
+        },
+      },
+      {
+        path: "/redis/tab/:activeTabIndex",
+        name: "RedisActiveTabIndex",
+        meta: {
+          notShow: true,
+          layer: "REDIS",
+        },
+      },
     ],
   },
 ];