prometheusmetricshost-metricsmachine-metricsnode-metricsprocfsprometheus-exportersystem-informationsystem-metrics
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Tobias Schmidt
ce117d7a40
|
8 years ago | |
---|---|---|
.. | ||
CONTRIBUTORS | 9 years ago | |
LICENSE | 9 years ago | |
README.md | 8 years ago | |
ntp.go | 8 years ago |
README.md
ntp
The ntp package is an implementation of a simple NTP client. It allows you to connect to a remote NTP server and request the current time.
To request the current time using version 4 of the NTP protocol, simply do the following:
time, err := ntp.Time("0.pool.ntp.org")
To request the current time along with additional metadata, use the Query function:
response, err := ntp.Query("0.pool.ntp.org", 4)