We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
const std::chrono::time_point<std::chrono::system_clock> now = std::chrono::system_clock::now(); influx_client->write(influxdb::Point{"test"}.addField("value", 10).setTimestamp(time));
In influx I see the time in seconds resolution, how can I insert it in microseconds?
The text was updated successfully, but these errors were encountered:
Changing the time resolution isn't supported yet (#86).
Sorry, something went wrong.
So the only resolution is seconds?
The resolution internally is nanoseconds.
You can set more corse within that precision:
std::chrono::time_point<std::chrono::system_clock> t(std::chrono::milliseconds(123)); Point{…}.setTimestamp(t);
No branches or pull requests
In influx I see the time in seconds resolution, how can I insert it in microseconds?
The text was updated successfully, but these errors were encountered: