shinkou
shinkou

Reputation: 5154

Amazon CloudWatch API Not Returning

I have the following code (stripped down) snippet where the API call fails to return.

AmazonCloudWatchAsyncClient awsClient
    = new AmazonCloudWatchAsyncClient(accesskey, secretkey);
...
logger.info("Before putMetricDataAsync");
awsClient.putMetricDataAsync(req, asynchndl);
logger.info("After putMetricDataAsync"); // not showing
...

I'm skeptical maybe it was due to some firewall issue on the server sitting offshore. Does anyone have a clue where the API connects to (i.e. host + port)? Any help or idea will be appreciated.

Thanks in advance!

Upvotes: 0

Views: 216

Answers (1)

Related Questions