aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/monlib/encode/unistat/unistat.h
blob: 2847c2c1b170e988d1a401afc9cf734eb5130db5 (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
#pragma once

#include <util/generic/fwd.h>
#include <util/datetime/base.h>

namespace NMonitoring {
    /// Decodes unistat-style metrics
    /// https://wiki.yandex-team.ru/golovan/stat-handle
    void DecodeUnistat(
            TStringBuf data,
            class IMetricConsumer* c,
            TStringBuf metricNameLabel = "sensor",
            TStringBuf metricNamePrefix = "",
            TInstant ts = TInstant::Zero());

    /// Assumes consumer's stream is open by the caller
    void DecodeUnistatToStream(
            TStringBuf data,
            class IMetricConsumer* c,
            TStringBuf metricNameLabel = "sensor",
            TStringBuf metricNamePrefix = "",
            TInstant ts = TInstant::Zero());
} // namespace NMonitoring