nenadm
August 31, 2022, 2:28pm
1
You can now integrate Timescale Cloud and CloudWatch to monitor your service metrics (CPU, memory, and storage).
Check out our resources for instructions on how to set this up:
Blog post
Demo video
Documentation
If you have any questions, don’t hesitate to ask!
1 Like
SimonR
August 30, 2023, 12:54pm
2
Hi nenadm,
Is there any way to make use of this functionality without handing out “CloudWatchFullAccess” to the user? full access as specified in the blog post seems a bit excessive.
kind regards,
Simon
Very good point @SimonR , probably the original intention was just for educational purposes, but being careful with permissions settings is always very welcome.
I’ll check with our team to be improving it. Thanks for the care
SimonR
September 5, 2023, 11:21am
4
You might be able to help out your colleagues here:
opened 07:27AM - 15 Jun 23 UTC
closed 04:17AM - 05 Sep 23 UTC
bug
documentation
needs info
community
_Use this template for reporting bugs in the docs._
# Describe the bug
Thi… s page is missing information on which IAM policy is required for the exporter user.
## What do the docs say now?
Nothing
## What should the docs say?
An example like:
```json
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"logs:CreateLogStream",
"logs:DescribeLogStreams",
"logs:CreateLogGroup",
"logs:PutLogEvents"
],
"Resource": [
"arn:aws:logs:[region]:[accountid]:log-group:[loggroupname]:log-stream:[streamname]",
"arn:aws:logs:[region]:[accountid]:log-group:[loggroupname]"
]
}
]
}
```
I did try this out just now, but I think my policy is incorrect.
# Page affected
https://docs.timescale.com/use-timescale/latest/metrics-logging/integrations/
1 Like