aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/monlib/encode/text
diff options
context:
space:
mode:
authortobo <tobo@yandex-team.ru>2022-02-10 16:47:27 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:27 +0300
commit55a7f90e4cd31e9481cace8ee5dfd682c27e810e (patch)
tree9814fbd1c3effac9b8377c5d604b367b14e2db55 /library/cpp/monlib/encode/text
parent7fe839092527589b38f014d854c51565b3c1adfa (diff)
downloadydb-55a7f90e4cd31e9481cace8ee5dfd682c27e810e.tar.gz
Restoring authorship annotation for <tobo@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/monlib/encode/text')
-rw-r--r--library/cpp/monlib/encode/text/text_encoder.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/library/cpp/monlib/encode/text/text_encoder.cpp b/library/cpp/monlib/encode/text/text_encoder.cpp
index e60caf2144..10336261f0 100644
--- a/library/cpp/monlib/encode/text/text_encoder.cpp
+++ b/library/cpp/monlib/encode/text/text_encoder.cpp
@@ -30,7 +30,7 @@ namespace NMonitoring {
State_.Expect(TEncoderState::EState::ROOT);
CommonTime_ = time;
if (time != TInstant::Zero()) {
- Out_->Write(TStringBuf("common time: "));
+ Out_->Write(TStringBuf("common time: "));
WriteTime(time);
Out_->Write('\n');
}
@@ -62,7 +62,7 @@ namespace NMonitoring {
State_ = TEncoderState::EState::METRIC;
} else if (State_ == TEncoderState::EState::COMMON_LABELS) {
State_ = TEncoderState::EState::ROOT;
- Out_->Write(TStringBuf("common labels: "));
+ Out_->Write(TStringBuf("common labels: "));
WriteLabels();
Out_->Write('\n');
} else {
@@ -149,11 +149,11 @@ namespace NMonitoring {
out << '{';
for (auto&& l : Labels_) {
- out << l.Name() << TStringBuf("='") << l.Value() << '\'';
+ out << l.Name() << TStringBuf("='") << l.Value() << '\'';
++i;
if (i < size) {
- out << TStringBuf(", ");
+ out << TStringBuf(", ");
}
};
@@ -166,7 +166,7 @@ namespace NMonitoring {
(*Out_) << LeftPad(typeStr, MaxMetricTypeNameLength) << ' ';
// (2) name and labels
- auto name = Labels_.Extract(TStringBuf("sensor"));
+ auto name = Labels_.Extract(TStringBuf("sensor"));
if (name) {
if (name->Value().find(' ') != TString::npos) {
(*Out_) << '"' << name->Value() << '"';
@@ -179,10 +179,10 @@ namespace NMonitoring {
// (3) values
if (!TimeSeries_.Empty()) {
TimeSeries_.SortByTs();
- Out_->Write(TStringBuf(" ["));
+ Out_->Write(TStringBuf(" ["));
for (size_t i = 0; i < TimeSeries_.Size(); i++) {
if (i > 0) {
- Out_->Write(TStringBuf(", "));
+ Out_->Write(TStringBuf(", "));
}
const auto& point = TimeSeries_[i];
@@ -191,7 +191,7 @@ namespace NMonitoring {
} else {
Out_->Write('(');
WriteTime(point.GetTime());
- Out_->Write(TStringBuf(", "));
+ Out_->Write(TStringBuf(", "));
WriteValue(TimeSeries_.GetValueType(), point.GetValue());
Out_->Write(')');
}