This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-website.git
The following commit(s) were added to refs/heads/master by this push:
new 3ec50edcaff Add blog to run skywalking on AWS (#546)
3ec50edcaff is described below
commit 3ec50edcaffc284fba5cd89815abbdeca59b8162
Author: kezhenxu94 <[email protected]>
AuthorDate: Tue Dec 13 19:07:38 2022 +0800
Add blog to run skywalking on AWS (#546)
---
.../index.md | 218 +++++++++++++++++++++
.../outputs/aurora/test1-cpm-locust.png | Bin 0 -> 556917 bytes
.../outputs/aurora/test1-cpm-skywalking.png | Bin 0 -> 269114 bytes
.../outputs/aurora/test1-postgresql-1.png | Bin 0 -> 689046 bytes
.../outputs/aurora/test1-postgresql-2.png | Bin 0 -> 663911 bytes
.../outputs/aurora/test1-postgresql-3.png | Bin 0 -> 583102 bytes
.../outputs/aurora/test1-so11y-1.png | Bin 0 -> 583017 bytes
.../outputs/aurora/test1-so11y-2.png | Bin 0 -> 476515 bytes
.../outputs/aurora/test1-so11y-3.png | Bin 0 -> 489943 bytes
.../outputs/aurora/test1-so11y-4.png | Bin 0 -> 705373 bytes
.../outputs/aurora/test1-so11y-5.png | Bin 0 -> 747828 bytes
.../outputs/postgresql/test1-cpm-locust.png | Bin 0 -> 474373 bytes
.../outputs/postgresql/test1-cpm.png | Bin 0 -> 163908 bytes
.../outputs/postgresql/test1-postgresql-1.png | Bin 0 -> 969171 bytes
.../outputs/postgresql/test1-postgresql-2.png | Bin 0 -> 575127 bytes
.../outputs/postgresql/test1-postgresql-3.png | Bin 0 -> 512559 bytes
.../outputs/postgresql/test1-so11y-1.png | Bin 0 -> 717901 bytes
.../outputs/postgresql/test1-so11y-2.png | Bin 0 -> 689067 bytes
.../outputs/postgresql/test1-so11y-3.png | Bin 0 -> 506819 bytes
.../outputs/postgresql/test1-so11y-4.png | Bin 0 -> 771730 bytes
.../outputs/postgresql/test1-so11y-5.png | Bin 0 -> 849154 bytes
.../outputs/postgresql/test2-cpm-locust.png | Bin 0 -> 555833 bytes
.../outputs/postgresql/test2-cpm.png | Bin 0 -> 294869 bytes
.../outputs/postgresql/test2-postgresql-1.png | Bin 0 -> 739262 bytes
.../outputs/postgresql/test2-postgresql-2.png | Bin 0 -> 658819 bytes
.../outputs/postgresql/test2-postgresql-3.png | Bin 0 -> 522205 bytes
.../outputs/postgresql/test2-so11y-1.png | Bin 0 -> 859177 bytes
.../outputs/postgresql/test2-so11y-2.png | Bin 0 -> 623844 bytes
.../outputs/postgresql/test2-so11y-3.png | Bin 0 -> 475573 bytes
.../outputs/postgresql/test2-so11y-4.png | Bin 0 -> 488560 bytes
.../outputs/postgresql/test2-so11y-5.png | Bin 0 -> 722254 bytes
.../outputs/postgresql/test2-so11y-6.png | Bin 0 -> 797678 bytes
32 files changed, 218 insertions(+)
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/index.md
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/index.md
new file mode 100644
index 00000000000..964aa8367bc
--- /dev/null
+++
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/index.md
@@ -0,0 +1,218 @@
+---
+title: "How to run Apache SkyWalking on AWS EKS and RDS/Aurora"
+date: 2022-12-13
+author: "[Zhenxu Ke](https://github.com/kezhenxu94)"
+description: "Introduce how to quickly set up Apache SkyWalking on AWS EKS and
RDS/Aurora"
+tags:
+- SkyWalking
+- Observability
+- Demo
+- AWS
+- RDS
+- Aurora
+---
+
+## Introduction
+
+Apache SkyWalking is an open source APM tool for monitoring and
troubleshooting distributed systems,
+especially designed for microservices, cloud native and container-based
(Docker, Kubernetes, Mesos)
+architectures. It provides distributed tracing, service mesh observability,
metric aggregation and
+visualization, and alarm.
+
+In this article, I will introduce how to quickly set up Apache SkyWalking on
AWS EKS and RDS/Aurora,
+as well as a couple of sample services, monitoring services to observe
SkyWalking itself.
+
+## Prerequisites
+
+- AWS account
+- [AWS
CLI](https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2.html)
+- [Terraform](https://www.terraform.io/downloads.html)
+- [kubectl](https://kubernetes.io/docs/tasks/tools/#kubectl)
+
+We can use the AWS web console or CLI to create all resources needed in this
tutorial, but it can be
+too tedious and hard to debug when something goes wrong. So in this artical I
will use Terraform to
+create all AWS resources, deploy SkyWalking, sample services, and load
generator services (Locust).
+
+## Architecture
+
+The demo architecture is as follows:
+
+```mermaid
+graph LR
+ subgraph AWS
+ subgraph EKS
+ subgraph istio-system namespace
+ direction TB
+ OAP[[SkyWalking OAP]]
+ UI[[SkyWalking UI]]
+ Istio[[istiod]]
+ end
+ subgraph sample namespace
+ Service0[[Service0]]
+ Service1[[Service1]]
+ ServiceN[[Service ...]]
+ end
+ subgraph locust namespace
+ LocustMaster[[Locust Master]]
+ LocustWorkers0[[Locust Worker 0]]
+ LocustWorkers1[[Locust Worker 1]]
+ LocustWorkersN[[Locust Worker ...]]
+ end
+ end
+ RDS[[RDS/Aurora]]
+ end
+ OAP --> RDS
+ Service0 -. telemetry data -.-> OAP
+ Service1 -. telemetry data -.-> OAP
+ ServiceN -. telemetry data -.-> OAP
+ UI --query--> OAP
+ LocustWorkers0 -- traffic --> Service0
+ LocustWorkers1 -- traffic --> Service0
+ LocustWorkersN -- traffic --> Service0
+ Service0 --> Service1 --> ServiceN
+ LocustMaster --> LocustWorkers0
+ LocustMaster --> LocustWorkers1
+ LocustMaster --> LocustWorkersN
+ User --> LocustMaster
+```
+
+As shown in the architecture diagram, we need to create the following AWS
resources:
+
+- EKS cluster
+- RDS instance or Aurora cluster
+
+Sounds simple, but there are a lot of things behind the scenes, such as VPC,
subnets, security groups, etc.
+You have to configure them correctly to make sure the EKS cluster can connect
to RDS instance/Aurora cluster
+otherwise the SkyWalking won't work. Luckily, Terraform can help us to create
and destroy all these resources
+automatically.
+
+I have created a Terraform module to create all AWS resources needed in this
tutorial, you can find it in the
+[GitHub repository](https://github.com/kezhenxu94/oap-load-test/tree/main/aws).
+
+## Create AWS resources
+
+First, we need to clone the GitHub repository and `cd` into the folder:
+
+```bash
+git clone https://github.com/kezhenxu94/oap-load-test.git
+```
+
+Then, we need to create a file named `terraform.tfvars` to specify the AWS
region and other variables:
+
+```bash
+cat > terraform.tfvars <<EOF
+aws_access_key = ""
+aws_secret_key = ""
+cluster_name = "skywalking-on-aws"
+region = "ap-east-1"
+db_type = "rds-postgresql"
+EOF
+```
+
+If you have already configured the AWS CLI, you can skip the `aws_access_key`
and `aws_secret_key` variables.
+To install SkyWalking with RDS postgresql, set the `db_type` to
`rds-postgresql`, to install SkyWalking with
+Aurora postgresql, set the `db_type` to `aurora-postgresql`.
+
+There are a lot of other variables you can configure, such as tags, sample
services count, replicas, etc.,
+you can find them in the
[variables.tf](https://github.com/kezhenxu94/oap-load-test/blob/main/aws/variables.tf).
+
+Then, we can run the following commands to initialize the Terraform module and
download the required providers,
+then create all AWS resources:
+
+```bash
+terraform init
+terraform apply -var-file=terraform.tfvars
+```
+
+Type `yes` to confirm the creation of all AWS resources, or add the
`-auto-approve` flag to the `terraform apply`
+to skip the confirmation:
+
+```bash
+terraform apply -var-file=terraform.tfvars -auto-approve
+```
+
+Now what you need to do is to wait for the creation of all AWS resources to
complete, it may take a few minutes.
+You can check the progress of the creation in the AWS web console, and check
the deployment progress of the services
+inside the EKS cluster.
+
+## Generate traffic
+
+Besides creating necessary AWS resources, the Terraform module also deploys
SkyWalking, sample services, and Locust
+load generator services to the EKS cluster.
+
+You can access the Locust web UI to generate traffic to the sample services:
+
+```bash
+open http://$(kubectl get svc -n locust -l app=locust-master -o
jsonpath='{.items[0].status.loadBalancer.ingress[0].hostname}'):8089
+```
+
+The command opens the browser to the Locust web UI, you can configure the
number of users and hatch rate to generate
+traffic.
+
+## Observe SkyWalking
+
+You can access the SkyWalking web UI to observe the sample services.
+
+First you need to forward the SkyWalking UI port to local
+
+```bash
+kubectl -n istio-system port-forward $(kubectl -n istio-system get pod -l
app=skywalking -l component=ui -o name) 8080:8080
+```
+
+And then open the browser to http://localhost:8080 to access the SkyWalking
web UI.
+
+## Observe RDS/Aurora
+
+You can also access the RDS/Aurora web console to observe the performance of
RDS/Aurora instance/Aurora cluste.
+
+## Test Results
+
+### Test 1: SkyWalking with EKS and RDS PostgreSQL
+
+#### Service Traffic
+
+
+
+
+#### RDS Performance
+
+
+
+
+
+#### SkyWalking Performance
+
+
+
+
+
+
+
+### Test 2: SkyWalking with EKS and Aurora PostgreSQL
+
+#### Service Traffic
+
+
+
+
+#### RDS Performance
+
+
+
+
+
+#### SkyWalking Performance
+
+
+
+
+
+
+
+## Clean up
+
+When you are done with the demo, you can run the following command to destroy
all AWS resources:
+
+```bash
+terraform destroy -var-file=terraform.tfvars -auto-approve
+```
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-cpm-locust.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-cpm-locust.png
new file mode 100644
index 00000000000..b3b7fb090e0
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-cpm-locust.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-cpm-skywalking.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-cpm-skywalking.png
new file mode 100644
index 00000000000..00feffa6421
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-cpm-skywalking.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-postgresql-1.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-postgresql-1.png
new file mode 100644
index 00000000000..cf9badadfcb
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-postgresql-1.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-postgresql-2.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-postgresql-2.png
new file mode 100644
index 00000000000..00c68ecb649
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-postgresql-2.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-postgresql-3.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-postgresql-3.png
new file mode 100644
index 00000000000..d6b8fed2cd6
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-postgresql-3.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-so11y-1.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-so11y-1.png
new file mode 100644
index 00000000000..f72bf4657f3
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-so11y-1.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-so11y-2.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-so11y-2.png
new file mode 100644
index 00000000000..b5dd60f5662
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-so11y-2.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-so11y-3.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-so11y-3.png
new file mode 100644
index 00000000000..164cfe4f10c
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-so11y-3.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-so11y-4.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-so11y-4.png
new file mode 100644
index 00000000000..6ae8d61999d
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-so11y-4.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-so11y-5.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-so11y-5.png
new file mode 100644
index 00000000000..fcd5b4bbe46
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/aurora/test1-so11y-5.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-cpm-locust.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-cpm-locust.png
new file mode 100644
index 00000000000..fc71b30d1fc
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-cpm-locust.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-cpm.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-cpm.png
new file mode 100644
index 00000000000..638831f0c3c
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-cpm.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-postgresql-1.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-postgresql-1.png
new file mode 100644
index 00000000000..fa8bc4c8ea4
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-postgresql-1.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-postgresql-2.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-postgresql-2.png
new file mode 100644
index 00000000000..0b4741c31f8
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-postgresql-2.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-postgresql-3.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-postgresql-3.png
new file mode 100644
index 00000000000..045e5e68fa9
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-postgresql-3.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-so11y-1.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-so11y-1.png
new file mode 100644
index 00000000000..d02d341267c
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-so11y-1.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-so11y-2.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-so11y-2.png
new file mode 100644
index 00000000000..004abc1ad2d
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-so11y-2.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-so11y-3.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-so11y-3.png
new file mode 100644
index 00000000000..41ef16f9399
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-so11y-3.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-so11y-4.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-so11y-4.png
new file mode 100644
index 00000000000..c9e4a07ff8f
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-so11y-4.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-so11y-5.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-so11y-5.png
new file mode 100644
index 00000000000..056407c480a
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test1-so11y-5.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-cpm-locust.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-cpm-locust.png
new file mode 100644
index 00000000000..012d3380cbd
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-cpm-locust.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-cpm.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-cpm.png
new file mode 100644
index 00000000000..b9ee015fd45
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-cpm.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-postgresql-1.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-postgresql-1.png
new file mode 100644
index 00000000000..af9b20e52bb
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-postgresql-1.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-postgresql-2.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-postgresql-2.png
new file mode 100644
index 00000000000..6346dad714c
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-postgresql-2.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-postgresql-3.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-postgresql-3.png
new file mode 100644
index 00000000000..5aa5016baf8
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-postgresql-3.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-so11y-1.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-so11y-1.png
new file mode 100644
index 00000000000..fcb1deee230
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-so11y-1.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-so11y-2.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-so11y-2.png
new file mode 100644
index 00000000000..904139aee56
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-so11y-2.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-so11y-3.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-so11y-3.png
new file mode 100644
index 00000000000..4415f60cd99
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-so11y-3.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-so11y-4.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-so11y-4.png
new file mode 100644
index 00000000000..1e0447bca84
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-so11y-4.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-so11y-5.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-so11y-5.png
new file mode 100644
index 00000000000..b877054c8b8
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-so11y-5.png
differ
diff --git
a/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-so11y-6.png
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-so11y-6.png
new file mode 100644
index 00000000000..91de7526a7b
Binary files /dev/null and
b/content/blog/2022-12-13-how-to-run-apache-skywalking-on-aws-eks-rds/outputs/postgresql/test2-so11y-6.png
differ