https://github.com/cloudforet-io/plugin-aws-shd-inven-collector
Plugins for AWS Service Health Dashboard Collector
https://github.com/cloudforet-io/plugin-aws-shd-inven-collector
collector inventory plugin
Last synced: about 1 year ago
JSON representation
Plugins for AWS Service Health Dashboard Collector
- Host: GitHub
- URL: https://github.com/cloudforet-io/plugin-aws-shd-inven-collector
- Owner: cloudforet-io
- License: apache-2.0
- Created: 2022-09-05T01:12:15.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-03-21T16:36:56.000Z (about 2 years ago)
- Last Synced: 2024-03-21T17:48:15.121Z (about 2 years ago)
- Topics: collector, inventory, plugin
- Language: Python
- Homepage:
- Size: 82 KB
- Stars: 6
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
AWS Service Health Dashboard Collector Plugin
##### Plugin to collect AWS Service Health Dashboard
> SpaceONE's [plugin-aws-shd-inven-collector](https://github.com/spaceone-dev/plugin-aws-shd-inven-collector) is a convenient tool to get SHD(Service Heath Dashboard) from AWS.
Find us also at [Dockerhub](https://hub.docker.com/repository/docker/spaceone/aws-shd-inven-collector)
> Latest stable version : 1.0
Please contact us if you need any further information. ()
---
## Collecting Contents
* Table of Contents
* Event
---
## Authentication Overview
Registered service account on SpaceONE must have certain permissions to collect data Please, set
authentication privilege for followings:
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"translate:TranslateText"
],
"Effect": "Allow",
"Resource": "*"
}
]
}
---
## Options
### Translate a description
If translate_enable is added to the list elements in options, Translate the description according to the value set in translate_options.
By default, `translate_enable` is `True` and `translate_options` example is below.
{
"translate_enable": true,
"translate_options": {
"source_lang_code": "en",
"target_lang_code": "ko"
}
}
The translated result is stored in `data.translate`.
"data": {
....
"translate": {
"translate_enable": true,
"translated_text": "EFS 및 FSx 원본 또는 대상 위치를 사용하여 DataSync 작업에 대해 오류 발생률이 높아지는 것을 계속 조사하여 “DataSync 대상 위치가 올바르게 마운트되지 않았습니다.”더 빨리 업데이트하지 않을 경우 오전 8시 (태평양 표준시 기준) 에 업데이트를 제공할 것입니다.",
"translate_language": "ko"
}
}