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/02/08 14:43:12 UTC

[skywalking-booster-ui] branch main updated: Add AWS S3 menu (#227)

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 5b0a68f  Add AWS S3 menu (#227)
5b0a68f is described below

commit 5b0a68fe18c263dede51f986544f050db3ae93a2
Author: pg.yang <pg...@hotmail.com>
AuthorDate: Wed Feb 8 22:43:05 2023 +0800

    Add AWS S3 menu (#227)
---
 src/locales/lang/en.ts |  1 +
 src/locales/lang/es.ts |  1 +
 src/locales/lang/zh.ts |  1 +
 src/router/data/aws.ts | 16 ++++++++++++++++
 4 files changed, 19 insertions(+)

diff --git a/src/locales/lang/en.ts b/src/locales/lang/en.ts
index f39229f..c382ba5 100644
--- a/src/locales/lang/en.ts
+++ b/src/locales/lang/en.ts
@@ -378,5 +378,6 @@ const msg = {
   virtualMQ: "Virtual MQ",
   AWSCloud: "AWS Cloud",
   AWSCloudEKS: "EKS",
+  AWSCloudS3: "S3",
 };
 export default msg;
diff --git a/src/locales/lang/es.ts b/src/locales/lang/es.ts
index df7e54c..929d984 100644
--- a/src/locales/lang/es.ts
+++ b/src/locales/lang/es.ts
@@ -377,5 +377,6 @@ const msg = {
   virtualMQ: "MQ virtual",
   AWSCloud: "AWS Cloud",
   AWSCloudEKS: "EKS",
+  AWSCloudS3: "S3",
 };
 export default msg;
diff --git a/src/locales/lang/zh.ts b/src/locales/lang/zh.ts
index d43cdeb..34df4f3 100644
--- a/src/locales/lang/zh.ts
+++ b/src/locales/lang/zh.ts
@@ -375,5 +375,6 @@ const msg = {
   virtualMQ: "虚拟消息队列",
   AWSCloud: "AWS云服务",
   AWSCloudEKS: "EKS",
+  AWSCloudS3: "S3",
 };
 export default msg;
diff --git a/src/router/data/aws.ts b/src/router/data/aws.ts
index 208c198..c74ee58 100644
--- a/src/router/data/aws.ts
+++ b/src/router/data/aws.ts
@@ -42,6 +42,22 @@ export default [
           layer: "AWS_EKS",
         },
       },
+      {
+        path: "/aws-s3",
+        name: "AWSCloudS3",
+        meta: {
+          title: "AWSCloudS3",
+          layer: "AWS_S3",
+        },
+      },
+      {
+        path: "/aws-s3/tab/:activeTabIndex",
+        name: "S3ActiveTabIndex",
+        meta: {
+          notShow: true,
+          layer: "AWS_S3",
+        },
+      },      
     ],
   },
 ];