Revert "Influx DB: don't unneccessarily truncate timestamps to whole seconds"

This reverts commit eaa3cd83ad.
This commit is contained in:
Alexander A. Klimov 2024-01-16 12:19:48 +01:00
parent fc5b1178c6
commit cc9db3756f
1 changed files with 2 additions and 3 deletions

View File

@ -37,7 +37,6 @@
#include <boost/math/special_functions/fpclassify.hpp>
#include <boost/regex.hpp>
#include <boost/scoped_array.hpp>
#include <iomanip>
#include <memory>
#include <string>
#include <utility>
@ -399,7 +398,7 @@ void InfluxdbCommonWriter::SendMetric(const Checkable::Ptr& checkable, const Dic
}
}
msgbuf << " " << std::fixed << std::setprecision(0) << ts * 1.0e9;
msgbuf << " " << static_cast<unsigned long>(ts);
Log(LogDebug, GetReflectionType()->GetName())
<< "Checkable '" << checkable->GetName() << "' adds to metric list:'" << msgbuf.str() << "'.";
@ -554,7 +553,7 @@ Url::Ptr InfluxdbCommonWriter::AssembleBaseUrl()
url->SetScheme(GetSslEnable() ? "https" : "http");
url->SetHost(GetHost());
url->SetPort(GetPort());
url->AddQueryElement("precision", "ns");
url->AddQueryElement("precision", "s");
return url;
}