aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/metrics/json_formatter.h
blob: 519359d0a42fe866a0c3e10819e14a24fa59e6d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include "snapshots.h"
#include <vespa/vespalib/stllike/string.h>
#include <vespa/vespalib/data/slime/slime.h>

namespace vespalib {
namespace metrics {

/**
 * utility for converting a snapshot to JSON format
 * (which can be inserted into /state/v1/metrics page).
 **/
class JsonFormatter
{
private:
    using Cursor = vespalib::slime::Cursor;
    vespalib::Slime _data;
    Cursor& _top;
    double _snapLen;

    void handle(const Snapshot &snapshot,        Cursor &target);
    void handle(const PointSnapshot &snapshot,   Cursor &target);
    void handle(const CounterSnapshot &snapshot, Cursor &target);
    void handle(const GaugeSnapshot &snapshot,   Cursor &target);
public:
    JsonFormatter(const Snapshot &snapshot);

    vespalib::string asString() const {
        return _data.toString();
    }
};

} // namespace vespalib::metrics
} // namespace vespalib