mirror of
https://github.com/jetkvm/kvm.git
synced 2025-09-16 08:38:14 +00:00
* Ensure the mDNS mode is set every time network state changes Eliminates (mostly) duplicate code * Add custom NTP and HTTP time sync servers Since the ordering may have been previously defaulted and saved as "ntp,http", but that was being ignored and fallback-defaults were being used, in Ordering, `ntp` means use the fallback NTP servers, and `http` means use the fallback HTTP URLs. Thus `ntp_user_provided` and `http_user_provided` are the user specified static lists. * Add support for using DHCP-provided NTP server
149 lines
4.2 KiB
Go
149 lines
4.2 KiB
Go
package timesync
|
|
|
|
import (
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
|
)
|
|
|
|
var (
|
|
metricTimeSyncStatus = promauto.NewGauge(
|
|
prometheus.GaugeOpts{
|
|
Name: "jetkvm_timesync_status",
|
|
Help: "The status of the timesync, 1 if successful, 0 if not",
|
|
},
|
|
)
|
|
metricTimeSyncCount = promauto.NewCounter(
|
|
prometheus.CounterOpts{
|
|
Name: "jetkvm_timesync_total",
|
|
Help: "The number of times the timesync has been run",
|
|
},
|
|
)
|
|
metricTimeSyncSuccessCount = promauto.NewCounter(
|
|
prometheus.CounterOpts{
|
|
Name: "jetkvm_timesync_success_total",
|
|
Help: "The number of times the timesync has been successful",
|
|
},
|
|
)
|
|
metricRTCUpdateCount = promauto.NewCounter( //nolint:unused
|
|
prometheus.CounterOpts{
|
|
Name: "jetkvm_timesync_rtc_update_total",
|
|
Help: "The number of times the RTC has been updated",
|
|
},
|
|
)
|
|
metricNtpTotalSuccessCount = promauto.NewCounter(
|
|
prometheus.CounterOpts{
|
|
Name: "jetkvm_timesync_ntp_total_success_total",
|
|
Help: "The total number of successful NTP requests",
|
|
},
|
|
)
|
|
metricNtpTotalRequestCount = promauto.NewCounter(
|
|
prometheus.CounterOpts{
|
|
Name: "jetkvm_timesync_ntp_total_request_total",
|
|
Help: "The total number of NTP requests sent",
|
|
},
|
|
)
|
|
metricNtpSuccessCount = promauto.NewCounterVec(
|
|
prometheus.CounterOpts{
|
|
Name: "jetkvm_timesync_ntp_success_total",
|
|
Help: "The number of successful NTP requests",
|
|
},
|
|
[]string{"url"},
|
|
)
|
|
metricNtpRequestCount = promauto.NewCounterVec(
|
|
prometheus.CounterOpts{
|
|
Name: "jetkvm_timesync_ntp_request_total",
|
|
Help: "The number of NTP requests sent to the server",
|
|
},
|
|
[]string{"url"},
|
|
)
|
|
metricNtpServerLastRTT = promauto.NewGaugeVec(
|
|
prometheus.GaugeOpts{
|
|
Name: "jetkvm_timesync_ntp_server_last_rtt",
|
|
Help: "The last RTT of the NTP server in milliseconds",
|
|
},
|
|
[]string{"url"},
|
|
)
|
|
metricNtpServerRttHistogram = promauto.NewHistogramVec(
|
|
prometheus.HistogramOpts{
|
|
Name: "jetkvm_timesync_ntp_server_rtt",
|
|
Help: "The histogram of the RTT of the NTP server in milliseconds",
|
|
Buckets: []float64{
|
|
10, 25, 50, 100, 200, 300, 500, 1000,
|
|
},
|
|
},
|
|
[]string{"url"},
|
|
)
|
|
|
|
metricNtpServerInfo = promauto.NewGaugeVec(
|
|
prometheus.GaugeOpts{
|
|
Name: "jetkvm_timesync_ntp_server_info",
|
|
Help: "The info of the NTP server",
|
|
},
|
|
[]string{"url", "reference", "stratum", "precision"},
|
|
)
|
|
|
|
metricHttpTotalSuccessCount = promauto.NewCounter(
|
|
prometheus.CounterOpts{
|
|
Name: "jetkvm_timesync_http_total_success_total",
|
|
Help: "The total number of successful HTTP requests",
|
|
},
|
|
)
|
|
metricHttpTotalRequestCount = promauto.NewCounter(
|
|
prometheus.CounterOpts{
|
|
Name: "jetkvm_timesync_http_total_request_total",
|
|
Help: "The total number of HTTP requests sent",
|
|
},
|
|
)
|
|
metricHttpTotalCancelCount = promauto.NewCounter(
|
|
prometheus.CounterOpts{
|
|
Name: "jetkvm_timesync_http_total_cancel_total",
|
|
Help: "The total number of HTTP requests cancelled",
|
|
},
|
|
)
|
|
metricHttpSuccessCount = promauto.NewCounterVec(
|
|
prometheus.CounterOpts{
|
|
Name: "jetkvm_timesync_http_success_total",
|
|
Help: "The number of successful HTTP requests",
|
|
},
|
|
[]string{"url"},
|
|
)
|
|
metricHttpRequestCount = promauto.NewCounterVec(
|
|
prometheus.CounterOpts{
|
|
Name: "jetkvm_timesync_http_request_total",
|
|
Help: "The number of HTTP requests sent to the server",
|
|
},
|
|
[]string{"url"},
|
|
)
|
|
metricHttpCancelCount = promauto.NewCounterVec(
|
|
prometheus.CounterOpts{
|
|
Name: "jetkvm_timesync_http_cancel_total",
|
|
Help: "The number of HTTP requests cancelled",
|
|
},
|
|
[]string{"url"},
|
|
)
|
|
metricHttpServerLastRTT = promauto.NewGaugeVec(
|
|
prometheus.GaugeOpts{
|
|
Name: "jetkvm_timesync_http_server_last_rtt",
|
|
Help: "The last RTT of the HTTP server in milliseconds",
|
|
},
|
|
[]string{"url"},
|
|
)
|
|
metricHttpServerRttHistogram = promauto.NewHistogramVec(
|
|
prometheus.HistogramOpts{
|
|
Name: "jetkvm_timesync_http_server_rtt",
|
|
Help: "The histogram of the RTT of the HTTP server in milliseconds",
|
|
Buckets: []float64{
|
|
10, 25, 50, 100, 200, 300, 500, 1000,
|
|
},
|
|
},
|
|
[]string{"url"},
|
|
)
|
|
metricHttpServerInfo = promauto.NewGaugeVec(
|
|
prometheus.GaugeOpts{
|
|
Name: "jetkvm_timesync_http_server_info",
|
|
Help: "The info of the HTTP server",
|
|
},
|
|
[]string{"url", "http_code"},
|
|
)
|
|
)
|