com.aitusoftware.flute.server.http.SlaReportHandler Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2016 Aitu Software Limited.
*
* 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.aitusoftware.flute.server.http;
import com.aitusoftware.flute.server.cache.HistogramCache;
import com.aitusoftware.flute.server.dao.jdbc.HistogramRetrievalDao;
import com.aitusoftware.flute.server.dao.jdbc.MetricIdentifierDao;
import com.aitusoftware.flute.server.query.FullHistogramHandler;
import com.aitusoftware.flute.server.query.Query;
import org.HdrHistogram.Histogram;
import org.eclipse.jetty.server.Request;
import org.eclipse.jetty.server.handler.DefaultHandler;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Optional;
import java.util.Set;
import java.util.function.Supplier;
import static java.util.Collections.singleton;
public final class SlaReportHandler extends DefaultHandler
{
private final HistogramRetrievalDao histogramRetrievalDao;
private final MetricIdentifierDao metricIdentifierDao;
private final boolean isAggregator;
private final HistogramCache histogramCache;
public SlaReportHandler(final HistogramRetrievalDao histogramRetrievalDao,
final MetricIdentifierDao metricIdentifierDao,
final boolean isAggregator, final Supplier histogramSupplier)
{
this.histogramRetrievalDao = histogramRetrievalDao;
this.metricIdentifierDao = metricIdentifierDao;
this.isAggregator = isAggregator;
this.histogramCache = new HistogramCache(100, histogramRetrievalDao, System::currentTimeMillis, histogramSupplier);
}
@Override
public void handle(final String target, final Request baseRequest, final HttpServletRequest request,
final HttpServletResponse response) throws IOException, ServletException
{
response.setContentType("application/javascript; charset=utf-8");
final Optional parseResult = QueryParser.parseQuery(request.getPathInfo());
if(!parseResult.isPresent())
{
response.setStatus(HttpServletResponse.SC_BAD_REQUEST);
baseRequest.setHandled(true);
return;
}
final Query query = parseResult.get();
final PrintWriter writer = response.getWriter();
final Set metricIdentifiers;
if(isAggregator)
{
metricIdentifiers = metricIdentifierDao.getIdentifiersMatching(query.getMetricKey());
}
else
{
metricIdentifiers = singleton(query.getMetricKey());
}
writer.append("[");
if(!query.hasExplicitEndTime())
{
loadFromCache(query, writer, metricIdentifiers, query.getMetricKey());
}
else
{
histogramRetrievalDao.selectCompositeHistogramSummary(metricIdentifiers, query, new HistogramSummaryHandler(writer));
}
writer.append("]");
response.setStatus(HttpServletResponse.SC_OK);
baseRequest.setHandled(true);
writer.flush();
}
private void loadFromCache(
final Query query, final PrintWriter writer,
final Set metricIdentifiers,
final String metricKey)
{
final Histogram histogram = histogramCache.getCurrentHistogram(metricIdentifiers,
query.getDuration(), query.getDurationUnit(), metricKey);
new HistogramSummaryHandler(writer).onRecord(query.getMetricKey(), histogram.getStartTimeStamp(), histogram);
}
private static class HistogramSummaryHandler implements FullHistogramHandler
{
private final PrintWriter writer;
private boolean firstRecord;
HistogramSummaryHandler(final PrintWriter writer)
{
this.writer = writer;
firstRecord = true;
}
@Override
public void onRecord(final String identifier, final long timestamp, final Histogram histogram)
{
if (firstRecord)
{
firstRecord = false;
}
else
{
writer.append(",");
}
writer.append("[");
writer.append(Long.toString(timestamp)).append(",");
writer.append(Long.toString(histogram.getMinValue())).append(',');
writer.append(Double.toString(histogram.getMean())).append(',');
writer.append(Long.toString(histogram.getValueAtPercentile(99d))).append(',');
writer.append(Long.toString(histogram.getValueAtPercentile(50d))).append(',');
writer.append(Long.toString(histogram.getValueAtPercentile(90d))).append(',');
writer.append(Long.toString(histogram.getValueAtPercentile(99.9d))).append(',');
writer.append(Long.toString(histogram.getValueAtPercentile(99.99d))).append(',');
writer.append(Long.toString(histogram.getValueAtPercentile(99.999d))).append(',');
writer.append(Long.toString(histogram.getMaxValue())).append(',');
writer.append(Long.toString(histogram.getTotalCount()));
writer.append("]");
}
}
}