Examples of AmazonCloudWatch


Examples of com.amazonaws.services.cloudwatch.AmazonCloudWatch

        return cloudWatchClient;
    }

    AmazonCloudWatch createCloudWatchClient() {
        AWSCredentials credentials = new BasicAWSCredentials(configuration.getAccessKey(), configuration.getSecretKey());
        AmazonCloudWatch client = new AmazonCloudWatchClient(credentials);
        return client;
    }
View Full Code Here

Examples of com.amazonaws.services.cloudwatch.AmazonCloudWatch

        return cloudWatchClient;
    }

    AmazonCloudWatch createCloudWatchClient() {
        AWSCredentials credentials = new BasicAWSCredentials(configuration.getAccessKey(), configuration.getSecretKey());
        AmazonCloudWatch client = new AmazonCloudWatchClient(credentials);
        if (configuration.getAmazonCwEndpoint() != null) {
            client.setEndpoint(configuration.getAmazonCwEndpoint());
        }
        return client;
    }
View Full Code Here

Examples of com.amazonaws.services.cloudwatch.AmazonCloudWatch

    /**
     * Get a CloudWatch client whose endpoint is configured based on properties.
     */
    public static AmazonCloudWatch cloudWatch(AWSCredentialsProvider credentials) {
        AmazonCloudWatch client = new AmazonCloudWatchClient(credentials);
        client.setEndpoint(System.getProperty(AwsPropertyKeys.AWS_CLOUD_WATCH_END_POINT.getBundle(),
                "monitoring.amazonaws.com"));
        return client;
    }
View Full Code Here

Examples of com.amazonaws.services.cloudwatch.AmazonCloudWatch

        final long bytes = Tv.MILLION;
        final DomainStatsData data = Mockito.mock(DomainStatsData.class);
        Mockito.doReturn(
            Collections.singletonMap(bucket, new Stats.Simple(bytes))
        ).when(data).all();
        final AmazonCloudWatch client = Mockito.mock(AmazonCloudWatch.class);
        final ScheduledCloudWatch cloudwatch =
            new ScheduledCloudWatch(data, client);
        cloudwatch.run();
        Mockito.verify(client).putMetricData(
            new PutMetricDataRequest()
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.