Skip to content

cloudforet-io/plugin-aws-shd-inven-collector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

91 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AWS Service Health Dashboard Collector Plugin



Version License: Apache 2.0

Plugin to collect AWS Service Health Dashboard

SpaceONE's plugin-aws-shd-inven-collector is a convenient tool to get SHD(Service Heath Dashboard) from AWS.

Find us also at Dockerhub

Latest stable version : 1.0

Please contact us if you need any further information. (support@spaceone.dev)


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"
    }
}