We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55033b8 commit 01d35c8Copy full SHA for 01d35c8
CMakeLists.txt
@@ -17,7 +17,7 @@ endif()
17
18
# Define project
19
project(Monitoring
20
- VERSION 3.7.0
+ VERSION 3.7.1
21
DESCRIPTION "O2 Monitoring library"
22
LANGUAGES CXX
23
)
src/Backends/ApMonBackend.cxx
@@ -68,7 +68,7 @@ void ApMonBackend::send(const Metric& metric)
68
entity += '=';
69
(value > 0) ? entity += tags::GetValue(value) : entity += std::to_string(0 - value);
70
}
71
- if (mRunNumber != 0) convert << ",run=" << mRunNumber;
+ if (mRunNumber != 0) entity += (",run=" + std::to_string(mRunNumber));
72
73
int valueSize = metric.getValuesSize();
74
char **paramNames, **paramValues;
0 commit comments