Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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 com.teradata.benchto.driver.graphite;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.google.common.base.Joiner;
import com.google.common.collect.ImmutableMap;
import com.teradata.benchto.driver.BenchmarkExecutionException;
import com.teradata.benchto.driver.utils.TimeUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.http.ResponseEntity;
import org.springframework.retry.annotation.Backoff;
import org.springframework.retry.annotation.Retryable;
import org.springframework.stereotype.Component;
import org.springframework.web.client.RestClientException;
import org.springframework.web.client.RestTemplate;
import org.springframework.web.util.UriComponentsBuilder;
import java.math.BigDecimal;
import java.net.URI;
import java.time.ZonedDateTime;
import java.util.Arrays;
import java.util.Map;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.ANY;
import static com.google.common.base.MoreObjects.toStringHelper;
import static com.teradata.benchto.driver.graphite.GraphiteClient.GraphiteRenderResponseItem.DATA_POINT_VALUE_INDEX;
import static java.lang.String.format;
import static java.util.Objects.requireNonNull;
import static java.util.stream.Collectors.toMap;
import static org.springframework.http.HttpStatus.OK;
@Component
@ConditionalOnProperty(prefix = "graphite", value = "url")
public class GraphiteClient
{
private static final Logger LOGGER = LoggerFactory.getLogger(GraphiteClient.class);
@Value("${graphite.url}")
private String graphiteURL;
@Autowired
private RestTemplate restTemplate;
@Retryable(value = RestClientException.class, backoff = @Backoff(1000))
public void storeEvent(GraphiteEventRequest request)
{
LOGGER.debug("Storing graphite event: {}", request);
restTemplate.postForObject("{graphiteURL}/events/", request, Object.class, ImmutableMap.of("graphiteURL", graphiteURL));
}
@Retryable(value = {RestClientException.class, IncompleteDataException.class}, backoff = @Backoff(delay = 5000, multiplier = 2), maxAttempts = 4)
public Map loadMetrics(Map metrics, long fromEpochSecond, long toEpochSecond)
{
URI uri = buildLoadMetricsURI(metrics, fromEpochSecond, toEpochSecond);
LOGGER.debug("Loading metrics: {}", uri);
ResponseEntity response = restTemplate.getForEntity(uri, GraphiteRenderResponseItem[].class);
if (response.getStatusCode() != OK) {
throw new BenchmarkExecutionException("Could not load metrics: " + metrics + " - error: " + response);
}
return Arrays.stream(response.getBody()).collect(toMap(
GraphiteRenderResponseItem::getTarget,
responseItem -> parseDataPoints(responseItem.datapoints)
));
}
private URI buildLoadMetricsURI(Map metrics, long fromEpochSecond, long toEpochSecond)
{
UriComponentsBuilder uriBuilder = UriComponentsBuilder
.fromUriString(graphiteURL)
.path("/render")
.queryParam("format", "json")
.queryParam("from", fromEpochSecond)
.queryParam("until", toEpochSecond);
for (Map.Entry metric : metrics.entrySet()) {
String metricQueryExpr = metric.getValue();
String metricName = metric.getKey();
uriBuilder.queryParam("target", format("alias(%s,'%s')", metricQueryExpr, metricName));
}
return URI.create(uriBuilder.toUriString());
}
private double[] parseDataPoints(Double[][] inputDataPoints)
{
double[] dataPoints = new double[inputDataPoints.length];
for (int i = 0; i < inputDataPoints.length; i++) {
Double value = inputDataPoints[i][DATA_POINT_VALUE_INDEX];
if (value == null) {
/*
* Graphite returns null for an aggregation if *all* ingredients are null. We should query Graphite after
* delay, so that all ingredients *are* present, so aggregation should not be null too.
*
* Note however, that non-null value for e.g. an average or sum does not mean that the value can be trusted.
* Some data points can still be missing.
*/
throw new IncompleteDataException("null data point returned from Graphite");
}
dataPoints[i] = value;
}
return dataPoints;
}
@SuppressWarnings("unused")
@JsonAutoDetect(fieldVisibility = ANY)
public static class GraphiteEventRequest
{
private String what;
private String tags;
private String data = "";
private BigDecimal when;
private GraphiteEventRequest()
{
}
public static class GraphiteEventRequestBuilder
{
private GraphiteEventRequest request = new GraphiteEventRequest();
public GraphiteEventRequestBuilder()
{
when(TimeUtils.nowUtc());
}
public GraphiteEventRequestBuilder what(String what)
{
request.what = what;
return this;
}
public GraphiteEventRequestBuilder tags(String... tags)
{
request.tags = Joiner.on(" ").join(tags);
return this;
}
public GraphiteEventRequestBuilder data(String data)
{
request.data = data;
return this;
}
public GraphiteEventRequestBuilder when(ZonedDateTime zonedDateTime)
{
requireNonNull(zonedDateTime, "zonedDateTime cannot be null");
request.when = new BigDecimal(format("%d.%d", zonedDateTime.toEpochSecond(), zonedDateTime.getNano() / 1000));
return this;
}
public GraphiteEventRequest build()
{
return request;
}
}
@Override
public String toString()
{
return toStringHelper(this)
.add("what", what)
.add("tags", tags)
.add("data", data)
.add("when", when)
.toString();
}
}
@SuppressWarnings("unused")
@JsonAutoDetect(fieldVisibility = ANY)
public static class GraphiteRenderResponseItem
{
public static final int DATA_POINT_VALUE_INDEX = 0;
public static final int DATA_POINT_TIMESTAMP_INDEX = 1;
private String target;
private Double[][] datapoints;
String getTarget()
{
return target;
}
}
public static final class IncompleteDataException
extends RuntimeException
{
public IncompleteDataException(String message)
{
super(message);
}
}
}