private void printGauge()

in src/main/java/org/apache/sling/commons/metrics/internal/JSONReporter.java [274:279]


    private void printGauge(Map.Entry<String, Gauge> e) throws IOException {
        json.key(e.getKey()).object();
        Object v = e.getValue().getValue();
        json.key("value").value(jsonSafeValue(v));
        json.endObject();
    }