summaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/container/jdisc/state
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2018-10-24 11:06:39 +0200
committergjoranv <gv@oath.com>2018-10-31 12:40:12 +0100
commita7cf143f91aa3d07efc79b683d9c996fb406129a (patch)
tree7ec655cf23036764e19302e0223f5f435909e00f /container-core/src/main/java/com/yahoo/container/jdisc/state
parentaf146b406da7911a0e035ea3bf184680b31bac9b (diff)
Add new handler for obtaining metrics snapshot in "packets" format
Diffstat (limited to 'container-core/src/main/java/com/yahoo/container/jdisc/state')
-rw-r--r--container-core/src/main/java/com/yahoo/container/jdisc/state/MetricsPacketsHandler.java188
-rw-r--r--container-core/src/main/java/com/yahoo/container/jdisc/state/StateHandler.java12
2 files changed, 196 insertions, 4 deletions
diff --git a/container-core/src/main/java/com/yahoo/container/jdisc/state/MetricsPacketsHandler.java b/container-core/src/main/java/com/yahoo/container/jdisc/state/MetricsPacketsHandler.java
new file mode 100644
index 00000000000..50c64341581
--- /dev/null
+++ b/container-core/src/main/java/com/yahoo/container/jdisc/state/MetricsPacketsHandler.java
@@ -0,0 +1,188 @@
+// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.container.jdisc.state;
+
+import com.google.inject.Inject;
+import com.yahoo.collections.Tuple2;
+import com.yahoo.component.provider.ComponentRegistry;
+import com.yahoo.container.jdisc.state.StateHandler.JSONObjectWithLegibleException;
+import com.yahoo.jdisc.Request;
+import com.yahoo.jdisc.Response;
+import com.yahoo.jdisc.Timer;
+import com.yahoo.jdisc.handler.AbstractRequestHandler;
+import com.yahoo.jdisc.handler.ContentChannel;
+import com.yahoo.jdisc.handler.ResponseDispatch;
+import com.yahoo.jdisc.handler.ResponseHandler;
+import com.yahoo.jdisc.http.HttpHeaders;
+import com.yahoo.metrics.MetricsPresentationConfig;
+import org.json.JSONException;
+import org.json.JSONObject;
+
+import java.nio.ByteBuffer;
+import java.nio.charset.StandardCharsets;
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Map;
+
+import static com.yahoo.container.jdisc.state.StateHandler.getSnapshotPreprocessor;
+
+/**
+ * This handler outputs metrics in a json-like format. Each individual metric is a json object (packet),
+ * but there is no outer array or object that wraps the metrics packets. This handler is not set up by
+ * default, but can be added to the applications's services configuration.
+ *
+ * Based on {@link StateHandler}.
+ *
+ * @author gjoranv
+ */
+public class MetricsPacketsHandler extends AbstractRequestHandler {
+ static final String APPLICATION_KEY = "application";
+ static final String TIMESTAMP_KEY = "timestamp";
+ static final String STATUS_CODE_KEY = "status_code";
+ static final String STATUS_MSG_KEY = "status_msg";
+ static final String METRICS_KEY = "metrics";
+ static final String DIMENSIONS_KEY = "dimensions";
+
+
+ private final StateMonitor monitor;
+ private final Timer timer;
+ private final SnapshotProvider snapshotPreprocessor;
+ private final String applicationName;
+
+ @Inject
+ public MetricsPacketsHandler(StateMonitor monitor,
+ Timer timer,
+ ComponentRegistry<SnapshotProvider> preprocessors,
+ MetricsPresentationConfig presentation,
+ MetricsPacketsHandlerConfig config) {
+ this.monitor = monitor;
+ this.timer = timer;
+ snapshotPreprocessor = getSnapshotPreprocessor(preprocessors, presentation);
+ applicationName = config.application();
+ }
+
+
+ @Override
+ public ContentChannel handleRequest(Request request, ResponseHandler handler) {
+ new ResponseDispatch() {
+ @Override
+ protected Response newResponse() {
+ Response response = new Response(Response.Status.OK);
+ response.headers().add(HttpHeaders.Names.CONTENT_TYPE, "application/json");
+ return response;
+ }
+
+ @Override
+ protected Iterable<ByteBuffer> responseContent() {
+ return Collections.singleton(ByteBuffer.wrap(buildMetricOutput()));
+ }
+ }.dispatch(handler);
+
+ return null;
+ }
+
+ private byte[] buildMetricOutput() {
+ try {
+ String output = getStatusPacket() + getAllMetricsPackets();
+ return output.getBytes(StandardCharsets.UTF_8);
+ } catch (JSONException e) {
+ throw new RuntimeException("Bad JSON construction.", e);
+ }
+ }
+
+ /**
+ * Exactly one status packet is added to the response.
+ */
+ private String getStatusPacket() throws JSONException {
+ JSONObject packet = new JSONObjectWithLegibleException();
+ packet.put(APPLICATION_KEY, applicationName);
+
+ StateMonitor.Status status = monitor.status();
+ packet.put(STATUS_CODE_KEY, status.ordinal());
+ packet.put(STATUS_MSG_KEY, status.name());
+ return jsonToString(packet);
+ }
+
+ private String jsonToString(JSONObject jsonObject) throws JSONException {
+ return jsonObject.toString(4);
+ }
+
+ private String getAllMetricsPackets() throws JSONException {
+ StringBuilder ret = new StringBuilder();
+ List<JSONObject> metricsPackets = getPacketsForSnapshot(getSnapshot(), applicationName, timer.currentTimeMillis());
+ for (JSONObject packet : metricsPackets) {
+ ret.append("\n\n"); // For legibility and parsing in unit tests
+ ret.append(jsonToString(packet));
+ }
+ return ret.toString();
+ }
+
+ private MetricSnapshot getSnapshot() {
+ if (snapshotPreprocessor == null) {
+ return monitor.snapshot();
+ } else {
+ return snapshotPreprocessor.latestSnapshot();
+ }
+ }
+
+ private List<JSONObject> getPacketsForSnapshot(MetricSnapshot metricSnapshot, String application, long timestamp) throws JSONException {
+ if (metricSnapshot == null) return Collections.emptyList();
+
+ List<JSONObject> packets = new ArrayList<>();
+
+ for (Map.Entry<MetricDimensions, MetricSet> snapshotEntry : metricSnapshot) {
+ MetricDimensions metricDimensions = snapshotEntry.getKey();
+ MetricSet metricSet = snapshotEntry.getValue();
+
+ JSONObjectWithLegibleException packet = new JSONObjectWithLegibleException();
+ addMetaData(timestamp, application, packet);
+ addDimensions(metricDimensions, packet);
+ addMetrics(metricSet, packet);
+ packets.add(packet);
+ }
+ return packets;
+ }
+
+ private void addMetaData(long timestamp, String application, JSONObjectWithLegibleException packet) {
+ packet.put(APPLICATION_KEY, application);
+ packet.put(TIMESTAMP_KEY, timestamp);
+
+ }
+
+ private void addDimensions(MetricDimensions metricDimensions, JSONObjectWithLegibleException packet) throws JSONException {
+ Iterator<Map.Entry<String, String>> dimensionsIterator = metricDimensions.iterator();
+ if (dimensionsIterator.hasNext()) {
+ JSONObject jsonDim = new JSONObjectWithLegibleException();
+ packet.put(DIMENSIONS_KEY, jsonDim);
+ for (Map.Entry<String, String> dimensionEntry : metricDimensions) {
+ jsonDim.put(dimensionEntry.getKey(), dimensionEntry.getValue());
+ }
+ }
+ }
+
+ private void addMetrics(MetricSet metricSet, JSONObjectWithLegibleException packet) throws JSONException {
+ JSONObjectWithLegibleException metrics = new JSONObjectWithLegibleException();
+ packet.put(METRICS_KEY, metrics);
+ for (Map.Entry<String, MetricValue> metric : metricSet) {
+ String name = metric.getKey();
+ MetricValue value = metric.getValue();
+ if (value instanceof CountMetric) {
+ metrics.put(name + ".count", ((CountMetric) value).getCount());
+ } else if (value instanceof GaugeMetric) {
+ GaugeMetric gauge = (GaugeMetric) value;
+ metrics.put(name + ".average", gauge.getAverage())
+ .put(name + ".last", gauge.getLast())
+ .put(name + ".max", gauge.getMax());
+ if (gauge.getPercentiles().isPresent()) {
+ for (Tuple2<String, Double> prefixAndValue : gauge.getPercentiles().get()) {
+ metrics.put(name + "." + prefixAndValue.first + "percentile", prefixAndValue.second.doubleValue());
+ }
+ }
+ } else {
+ throw new UnsupportedOperationException("Unknown metric class: " + value.getClass().getName());
+ }
+ }
+ }
+
+}
diff --git a/container-core/src/main/java/com/yahoo/container/jdisc/state/StateHandler.java b/container-core/src/main/java/com/yahoo/container/jdisc/state/StateHandler.java
index 23c247fa438..da88a338049 100644
--- a/container-core/src/main/java/com/yahoo/container/jdisc/state/StateHandler.java
+++ b/container-core/src/main/java/com/yahoo/container/jdisc/state/StateHandler.java
@@ -54,11 +54,15 @@ public class StateHandler extends AbstractRequestHandler {
this.monitor = monitor;
this.timer = timer;
this.config = buildConfigOutput(config);
+ snapshotPreprocessor = getSnapshotPreprocessor(preprocessors, presentation);
+ }
+
+ static SnapshotProvider getSnapshotPreprocessor(ComponentRegistry<SnapshotProvider> preprocessors, MetricsPresentationConfig presentation) {
List<SnapshotProvider> allPreprocessors = preprocessors.allComponents();
if (presentation.slidingwindow() && allPreprocessors.size() > 0) {
- snapshotPreprocessor = allPreprocessors.get(0);
+ return allPreprocessors.get(0);
} else {
- snapshotPreprocessor = null;
+ return null;
}
}
@@ -298,7 +302,7 @@ public class StateHandler extends AbstractRequestHandler {
}
/** Produces a flat list of metric entries from a snapshot (which organizes metrics by dimensions) */
- private static List<Tuple> flattenAllMetrics(MetricSnapshot snapshot) {
+ static List<Tuple> flattenAllMetrics(MetricSnapshot snapshot) {
List<Tuple> metrics = new ArrayList<>();
for (Map.Entry<MetricDimensions, MetricSet> snapshotEntry : snapshot) {
for (Map.Entry<String, MetricValue> metricSetEntry : snapshotEntry.getValue()) {
@@ -308,7 +312,7 @@ public class StateHandler extends AbstractRequestHandler {
return metrics;
}
- private static class Tuple {
+ static class Tuple {
final MetricDimensions dim;
final String key;