blob: c2155f4b5bf4b641e75c8bcaea821ac50c0242f3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "metric_consumer.h"
#include <util/system/yassert.h>
namespace NMonitoring {
void IMetricConsumer::OnLabel(ui32 name, ui32 value) {
Y_UNUSED(name, value);
Y_ENSURE(false, "Not implemented");
}
std::pair<ui32, ui32> IMetricConsumer::PrepareLabel(TStringBuf name, TStringBuf value) {
Y_UNUSED(name, value);
Y_ENSURE(false, "Not implemented");
}
}
|