diff --git a/knowledge base/cloud computing/aws/ec2.md b/knowledge base/cloud computing/aws/ec2.md
index 1f2289b..f2d38f4 100644
--- a/knowledge base/cloud computing/aws/ec2.md
+++ b/knowledge base/cloud computing/aws/ec2.md
@@ -175,6 +175,25 @@ Refer [How can I send memory and disk metrics from my EC2 instances to CloudWatc
> Make sure the instance the permissions it needs to publish extra metrics.
> Consider assigning it the AWS-managed `CloudWatchAgentServerPolicy` IAM policy or similar permissions.
+>
+>
+>
+> ```json
+> {
+> Version: "2012-10-17",
+> Statement: [{
+> Effect: "Allow",
+> Action: [
+> "ec2:DescribeTags",
+> "ec2:DescribeVolumes",
+> "cloudwatch:PutMetricData"
+> ],
+> Resource: "*"
+> }]
+> }
+> ```
+>
+>
CloudWatch agent's logs are saved by default to `/opt/aws/amazon-cloudwatch-agent/logs/amazon-cloudwatch-agent.log`.