22.4. 사용법
22.4.1. CW 프로듀서에서 평가한 메시지 헤더
헤더 | 유형 | 설명 |
---|---|---|
|
| Amazon CW 지표 이름입니다. |
|
| Amazon CW 메트릭 값. |
|
| Amazon CW 메트릭 단위입니다. |
|
| Amazon CW 메트릭 네임스페이스입니다. |
|
| Amazon CW 메트릭 타임스탬프입니다. |
|
| Camel 2.12: Amazon CW 메트릭 차원 이름입니다. |
|
| Camel 2.12: Amazon CW 메트릭 차원 값입니다. |
|
| Camel 2.12: 차원 이름 및 차원 값의 맵입니다. |
22.4.2. 고급 AmazonCloudWatch 구성
AmazonCloudWatch
인스턴스 구성을 더 많이 제어해야 하는 경우 자체 인스턴스를 생성하고 URI에서 해당 인스턴스를 참조할 수 있습니다.
from("direct:start") .to("aws-cw://namepsace?amazonCwClient=#client");
#client
는 레지스트리에서 AmazonCloudWatch
를 나타냅니다.
예를 들어 Camel 애플리케이션이 방화벽 뒤에서 실행되고 있는 경우 다음을 수행합니다.
AWSCredentials awsCredentials = new BasicAWSCredentials("myAccessKey", "mySecretKey"); ClientConfiguration clientConfiguration = new ClientConfiguration(); clientConfiguration.setProxyHost("http://myProxyHost"); clientConfiguration.setProxyPort(8080); AmazonCloudWatch client = new AmazonCloudWatchClient(awsCredentials, clientConfiguration); registry.bind("client", client);