...
Instance List에서 Instance Type 클릭시 해당 Instance Type의 상세정보를 확인 할 수 있습니다.
...
Amazon CloudWatch Statistics Input Plugin
이 플러그인은 Amazon CloudWatch에서 통계 지표를 가져옵니다.
Telegraf CloudWatch Input Plugin (Sample)
CloudWatch 데이터를 수집할 Minion의 Collector.conf 에 아래와 같이 Plugin을 추가합니다.
Code Block |
---|
[[inputs.cloudwatch]]
region = <AWS-Region>
access_key = <Access-Key>
secret_key = <Secret-Key>
period = "5m"
delay = "5m"
interval = "5m"
namespace = "AWS/ApplicationELB"
statistic_include = [ "average" ]
[[inputs.cloudwatch]]
region = <AWS-Region>
access_key = <Access-Key>
secret_key = <Secret-Key>
period = "5m"
delay = "5m"
interval = "5m"
namespace = "AWS/EC2"
statistic_include = [ "average" ]
[[inputs.cloudwatch]]
region = <AWS-Region>
access_key = <Access-Key>
secret_key = <Secret-Key>
period = "5m"
delay = "5m"
interval = "5m"
namespace = "AWS/Usage"
statistic_include = [ "average" ] |
Info |
---|
자세한 내용은 링크 참조 CloudWatch Input Plugin |