blob: 8efc2b18a2a85aa739b9900302056d9ccc7371d9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include <library/cpp/monlib/encode/encoder.h>
class IOutputStream;
namespace NMonitoring {
IMetricEncoderPtr EncoderText(IOutputStream* out, bool humanReadableTs = true);
}
|