All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.bull.javamelody.internal.publish.CloudWatch Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
/*
 * Copyright 2008-2017 by Emeric Vernat
 *
 *     This file is part of Java Melody.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package net.bull.javamelody.internal.publish;

import java.io.IOException;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;

import com.amazonaws.services.cloudwatch.AmazonCloudWatch;
import com.amazonaws.services.cloudwatch.AmazonCloudWatchClientBuilder;
import com.amazonaws.services.cloudwatch.model.Dimension;
import com.amazonaws.services.cloudwatch.model.MetricDatum;
import com.amazonaws.services.cloudwatch.model.PutMetricDataRequest;

import net.bull.javamelody.Parameter;

/**
 * Publish chart data to AWS CloudWatch.
 * @author Emeric Vernat
 */
class CloudWatch extends MetricsPublisher {
	private final String cloudWatchNamespace;
	private final AmazonCloudWatch awsCloudWatch;
	private final String prefix;
	private final List dimensions = new ArrayList();

	private final List buffer = new ArrayList();
	private long lastTime;
	private Date lastTimestamp;

	CloudWatch(AmazonCloudWatch cloudWatch, String cloudWatchNamespace, String prefix,
			String application, String hostName) {
		super();
		assert cloudWatch != null;
		assert cloudWatchNamespace != null && !cloudWatchNamespace.startsWith("AWS/")
				&& cloudWatchNamespace.length() > 0 && cloudWatchNamespace.length() <= 255;
		assert prefix != null;
		assert application.length() >= 1 && application.length() <= 255;
		assert hostName.length() >= 1 && hostName.length() <= 255;

		this.awsCloudWatch = cloudWatch;
		this.cloudWatchNamespace = cloudWatchNamespace;
		this.prefix = prefix;
		// A dimension is like a tag which can be used to filter metrics in the CloudWatch UI.
		// Name and value of dimensions have min length 1 and max length 255.
		dimensions.add(new Dimension().withName("application").withValue(application));
		dimensions.add(new Dimension().withName("hostname").withValue(hostName));
		// note: to add other dimensions (max 10), we could call
		// new URL("http://instance-data/latest/meta-data/instance-id").openStream(),
		// or /ami-id, /placement/availability-zone, /instance-type, /local-hostname, /local-ipv4, /public-hostname, /public-ipv4
		// see http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html
		// except that it would not work from the collector server
	}

	/**
	 * New CloudWatch with DefaultAWSCredentialsProviderChain (and DefaultAwsRegionProviderChain) configured either by :
	 * 
    *
  • Environment Variables - * AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY * (RECOMMENDED since they are recognized by all the AWS SDKs and CLI except for .NET), * or AWS_ACCESS_KEY and AWS_SECRET_KEY (only recognized by Java SDK) *
  • *
  • Java System Properties - aws.accessKeyId and aws.secretKey
  • *
  • Credential profiles file at the default location (~/.aws/credentials) shared by all AWS SDKs and the AWS CLI
  • *
  • Credentials delivered through the Amazon EC2 container service if AWS_CONTAINER_CREDENTIALS_RELATIVE_URI" environment variable is set * and security manager has permission to access the variable,
  • *
  • Instance profile credentials delivered through the Amazon EC2 metadata service
  • *
* (idem for AWS region) * * @param cloudWatchNamespace CloudWatch Namespace such as "MyCompany/MyAppDomain" * (Namespace of Amazon EC2 is "AWS/EC2", but "AWS/*" is reserved for AWS products) * @param prefix Prefix such as "javamelody." * @param application Application such as /testapp * @param hostName Hostname such as [email protected] */ CloudWatch(String cloudWatchNamespace, String prefix, String application, String hostName) { this(AmazonCloudWatchClientBuilder.defaultClient(), cloudWatchNamespace, prefix, application, hostName); } // exemple en spécifiant credentials, region et endpoint // CloudWatch(String cloudWatchNamespace, AWSCredentialsProvider provider, String region) { // this(cloudWatchNamespace, AmazonCloudWatchClientBuilder.standard() // .withCredentials(provider) // .withRegion(region) // .withEndpointConfiguration(new EndpointConfiguration("monitoring.amazonaws.com")) // .build(), ...); // } static CloudWatch getInstance(String contextPath, String hostName) { final String cloudWatchNamespace = Parameter.CLOUDWATCH_NAMESPACE.getValue(); if (cloudWatchNamespace != null) { assert contextPath != null; assert hostName != null; if (cloudWatchNamespace.startsWith("AWS/")) { // http://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_PutMetricData.html throw new IllegalArgumentException( "CloudWatch namespaces starting with \"AWS/\" are reserved for use by AWS products."); } final String prefix = "javamelody."; // contextPath est du genre "/testapp" // hostName est du genre "www.host.com" return new CloudWatch(cloudWatchNamespace, prefix, contextPath, hostName); } return null; } @Override public void addValue(String metric, double value) { assert metric != null; final long timeInSeconds = System.currentTimeMillis() / 1000; if (lastTime != timeInSeconds) { lastTimestamp = new Date(); lastTime = timeInSeconds; } // http://docs.amazonwebservices.com/AmazonCloudWatch/latest/APIReference/API_MetricDatum.html // In theory, large values are rejected, but the maximum is so large that we don't bother to verify. final MetricDatum metricDatum = new MetricDatum().withMetricName(prefix + metric) .withDimensions(dimensions).withTimestamp(lastTimestamp).withValue(value); //.withUnit("None") synchronized (buffer) { buffer.add(metricDatum); } } @Override public void send() throws IOException { final List datumList; synchronized (buffer) { datumList = new ArrayList(buffer); buffer.clear(); } // note: Each PutMetricData request is limited to 40 KB in size for HTTP POST requests. // And the collection MetricData must not have a size greater than 20. final List> parts = partition(datumList, 20); for (final List part : parts) { final PutMetricDataRequest request = new PutMetricDataRequest() .withNamespace(cloudWatchNamespace).withMetricData(part); try { awsCloudWatch.putMetricData(request); } catch (final Exception e) { // pas catch (AmazonCloudWatchException) sinon ClassNotFoundException dans Jenkins par ex throw new IOException("Error connecting to AWS CloudWatch", e); } } } private static List> partition(List list, int partitionSize) { final List> partitions = new ArrayList>(); for (int i = 0; i < list.size(); i += partitionSize) { partitions.add(list.subList(i, Math.min(i + partitionSize, list.size()))); } return partitions; } @Override public void stop() { awsCloudWatch.shutdown(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy