https://github.com/cloudforet-io/plugin-aws-cloudwatch-mon-datasource
Plugin for AWS Cloudwatch
https://github.com/cloudforet-io/plugin-aws-cloudwatch-mon-datasource
data-source metric monitoring plugin
Last synced: 12 months ago
JSON representation
Plugin for AWS Cloudwatch
- Host: GitHub
- URL: https://github.com/cloudforet-io/plugin-aws-cloudwatch-mon-datasource
- Owner: cloudforet-io
- License: apache-2.0
- Created: 2022-09-05T01:11:28.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-21T16:36:55.000Z (about 2 years ago)
- Last Synced: 2025-03-26T07:04:30.431Z (about 1 year ago)
- Topics: data-source, metric, monitoring, plugin
- Language: Python
- Homepage:
- Size: 203 KB
- Stars: 6
- Watchers: 4
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# plugin-aws-cloudwatch-mon-datasource

**Plugin to collect Amazon Cloudwatch metric data**
> SpaceONE's [plugin-aws-cloudwatch-mon-datasource](https://github.com/spaceone-dev/plugin-aws-cloudwatch-mon-datasource) is a convenient tool to get Cloudwatch metric data from AWS.
Find us also at [Dockerhub](https://hub.docker.com/repository/docker/spaceone/plugin-aws-cloudwatch-mon-datasource)
> Latest stable version : 1.2.2
Please contact us if you need any further information. ()
---
## AWS Service Endpoint (in use)
There is an endpoints used to collect AWS resources information.
AWS endpoint is a URL consisting of a region and a service code.
https://cloudwatch.[region-code].amazonaws.com
We use a lots of endpoints because we collect information from many regions.
### Region list
Below is the AWS region information.
The regions we collect are not all regions supported by AWS. Exactly, we target the regions results returned by [describe_regions()](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ec2.html#EC2.Client.describe_regions) of AWS ec2 client.
|No.|Region name|Region Code|
|---|------|---|
|1|US East (Ohio)|us-east-2|
|2|US East (N. Virginia)|us-east-1|
|3|US West (N. California)|us-west-1|
|4|US West (Oregon)|us-west-2|
|5|Asia Pacific (Mumbai)|ap-south-1|
|6|Asia Pacific (Osaka)|ap-northeast-3|
|7|Asia Pacific (Seoul)|ap-northeast-2|
|8|Asia Pacific (Singapore)|ap-southeast-1|
|9|Asia Pacific (Sydney)|ap-southeast-2|
|10|Asia Pacific (Tokyo)|ap-northeast-1|
|11|Canada (Central)|ca-central-1|
|12|Europe (Frankfurt)|eu-central-1|
|13|Europe (Ireland)|eu-west-1|
|14|Europe (London)|eu-west-2|
|15|Europe (Paris)|eu-west-3|
|16|Europe (Stockholm)|eu-north-1|
|17|South America (São Paulo)|sa-east-1|
---
## Authentication Overview
Registered service account on SpaceONE must have certain permissions to collect cloud service data Please, set
authentication privilege for followings:
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"cloudwatch:Describe*",
"cloudwatch:Get*",
"cloudwatch:List*",
],
"Effect": "Allow",
"Resource": "*"
}
]
}
---
## [Release note](RELEASE.md)