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 9e9761f commit db153c1Copy full SHA for db153c1
src/Backends/ApMonBackend.cxx
@@ -34,13 +34,13 @@ inline int ApMonBackend::convertTimestamp(const std::chrono::time_point<std::chr
34
return static_cast<int>(std::chrono::system_clock::to_time_t(timestamp));
35
}
36
37
-void ApMonBackend::addGlobalTag(std::string name, std::string value)
+void ApMonBackend::addGlobalTag(std::string, std::string value)
38
{
39
if (!entity.empty()) entity += ".";
40
entity += value;
41
42
43
-void ApMonBackend::sendMultiple(std::string measurement, std::vector<Metric>&& metrics)
+void ApMonBackend::sendMultiple(std::string, std::vector<Metric>&& metrics)
44
45
int noMetrics = metrics.size();
46
char **paramNames, **paramValues;
0 commit comments