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/03/26 02:01:11 UTC

[skywalking-booster-ui] branch main updated: Add AWS API Gateway menu (#248)

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 5973632  Add AWS API Gateway menu (#248)
5973632 is described below

commit 5973632f0f2e7b2320862d1149065afdf4358177
Author: pg.yang <pg...@hotmail.com>
AuthorDate: Sun Mar 26 10:01:05 2023 +0800

    Add AWS API Gateway menu (#248)
---
 src/locales/lang/en.ts     |  1 +
 src/locales/lang/es.ts     |  1 +
 src/locales/lang/zh.ts     |  1 +
 src/router/data/aws.ts     | 16 ++++++++++++++++
 src/router/data/gateway.ts | 16 ++++++++++++++++
 5 files changed, 35 insertions(+)

diff --git a/src/locales/lang/en.ts b/src/locales/lang/en.ts
index 5608018..8a2c922 100644
--- a/src/locales/lang/en.ts
+++ b/src/locales/lang/en.ts
@@ -382,5 +382,6 @@ const msg = {
   AWSCloudEKS: "EKS",
   AWSCloudS3: "S3",
   AWSCloudDynamoDB: "DynamoDB",
+  AWSGateway: "AWS Gateway",
 };
 export default msg;
diff --git a/src/locales/lang/es.ts b/src/locales/lang/es.ts
index eb5492d..a0f7912 100644
--- a/src/locales/lang/es.ts
+++ b/src/locales/lang/es.ts
@@ -381,5 +381,6 @@ const msg = {
   AWSCloudEKS: "EKS",
   AWSCloudS3: "S3",
   AWSCloudDynamoDB: "DynamoDB",
+  AWSGateway: "AWS Gateway",
 };
 export default msg;
diff --git a/src/locales/lang/zh.ts b/src/locales/lang/zh.ts
index debbd1d..e574656 100644
--- a/src/locales/lang/zh.ts
+++ b/src/locales/lang/zh.ts
@@ -379,5 +379,6 @@ const msg = {
   AWSCloudEKS: "EKS",
   AWSCloudS3: "S3",
   AWSCloudDynamoDB: "DynamoDB",
+  AWSGateway: "AWS Gateway",
 };
 export default msg;
diff --git a/src/router/data/aws.ts b/src/router/data/aws.ts
index 01bb936..eb632ae 100644
--- a/src/router/data/aws.ts
+++ b/src/router/data/aws.ts
@@ -74,6 +74,22 @@ export default [
           layer: "AWS_DYNAMODB",
         },
       },
+      {
+        path: "/aws-gateway",
+        name: "AWSGateway",
+        meta: {
+          title: "AWSGateway",
+          layer: "AWS_GATEWAY",
+        },
+      },
+      {
+        path: "/aws-gateway/tab/:activeTabIndex",
+        name: "GatewayActiveTabIndex",
+        meta: {
+          notShow: true,
+          layer: "AWS_GATEWAY",
+        },
+      },
     ],
   },
 ];
diff --git a/src/router/data/gateway.ts b/src/router/data/gateway.ts
index f381438..8c1f640 100644
--- a/src/router/data/gateway.ts
+++ b/src/router/data/gateway.ts
@@ -42,6 +42,22 @@ export default [
           layer: "APISIX",
         },
       },
+      {
+        path: "/aws-gateway",
+        name: "AWSGateway",
+        meta: {
+          title: "AWSGateway",
+          layer: "AWS_GATEWAY",
+        },
+      },
+      {
+        path: "/aws-gateway/tab/:activeTabIndex",
+        name: "GatewayActiveTabIndex",
+        meta: {
+          notShow: true,
+          layer: "AWS_GATEWAY",
+        },
+      },
     ],
   },
 ];