第一次使用Java中的AWS API获取ec2-instance的云监视统计信息。我用谷歌搜索了一下,发现了一些代码片段。这里是

AmazonCloudWatchClient cloudWatch = new AmazonCloudWatchClient(
                new BasicAWSCredentials(AccessKey, SecretKey));
        cloudWatch.setEndpoint("ec2-<my-static-ip>.compute-1.amazonaws.com");
        long offsetInMilliseconds = 1000 * 60 * 60 * 24;
        Dimension instanceDimension = new Dimension();
        instanceDimension.setName("Instanceid");
        instanceDimension.setValue(InstanceId);
        GetMetricStatisticsRequest request = new GetMetricStatisticsRequest()
                .withStartTime(
                        new Date(new Date().getTime()
                                - offsetInMilliseconds))
                .withNamespace("AWS/EC2")
                .withPeriod(60 * 60)
                .withDimensions(
                        new Dimension().withName("InstanceId").withValue(
                                InstanceId))
                .withMetricName("CPUUtilization")
                .withStatistics("Average", "Maximum")
                .withEndTime(new Date());

        GetMetricStatisticsResult getMetricStatisticsResult = cloudWatch
                .getMetricStatistics(request);
        double avgCPUUtilization = 0;
        List dataPoint = getMetricStatisticsResult.getDatapoints();
        for (Object aDataPoint : dataPoint) {
            Datapoint dp = (Datapoint) aDataPoint;
            avgCPUUtilization = dp.getAverage();
            System.out.println(InstanceId
                    + " instance's average CPU utilization : "
                    + dp.getAverage());
        }
    } catch (AmazonServiceException ase) {
        System.out
                .println("Caught an AmazonServiceException, which means the request was made  "
                        + "to Amazon EC2, but was rejected with an error response for some reason.");
        System.out.println("Error Message:    " + ase.getMessage());
        System.out.println("HTTP Status Code: " + ase.getStatusCode());
        System.out.println("AWS Error Code:   " + ase.getErrorCode());
        System.out.println("Error Type:       " + ase.getErrorType());
        System.out.println("Request ID:       " + ase.getRequestId());

    }


因此,我尝试使用此代码获取统计信息,但是第一次它会引发错误提示

com.amazonaws.AmazonClientException: Unable to execute HTTP request:Connection to https://ec2-<my-static-ip>.compute-1.amazonaws.com refused


然后我认为它正在发送https请求。所以我在实例上启用了ssl并尝试过,然后我就遇到了异常。

 com.amazonaws.AmazonClientException: Unable to execute HTTP request: peer not authenticated


我在我的实例中使用的是OpenJDK,所以我认为这可能会导致问题。然后我删除了openjdk并安装了Oracle JDK 1.7。但仍然是同样的问题。

我的问题是

1)我如何仅发送HTTP(而不是HTTPS)请求以获取统计信息?

2)如何摆脱这个问题,以便我可以得到我的结果?

但是请不要要求我阅读任何文档,因为我在网络,博客,论坛,文档等中搜索时搞砸了,然后我就到了这里。因此,请提供解决方案或告诉我我要去哪里了。

谁能帮我解决这个问题。

先感谢您。

最佳答案

得到了解决方案。

1)删除了AmazonCloudWatchClient的设置端点。

2)AWS凭证(访问密钥ID,秘密密钥)存在问题。因此,我创建了另一组凭证并为用户提供了CloudWatchFullAccess策略。

现在它就像Charm ... :-)

谢谢。

07-24 09:38