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
gpslocak-timebeat.py reports V when I get ns level adjustments:
Apr 23 23:57:48 cm4-timebeat timebeat[518]: adj,eth0,-2ns,0s,1106
Fix:
Line 34 From:
if any(x in delta for x in ('ms', 'µs')):
To:
if any(x in delta for x in ('ms', 'µs', 'ns')):
The text was updated successfully, but these errors were encountered:
No branches or pull requests
gpslocak-timebeat.py reports V when I get ns level adjustments:
Apr 23 23:57:48 cm4-timebeat timebeat[518]: adj,eth0,-2ns,0s,1106
Fix:
Line 34 From:
To:
The text was updated successfully, but these errors were encountered: