blob: 121ee368f0275335fb47f951c1774c292ea24a45 (
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");
}
}
|