Publish ITWorx Pulse source
Public source validation / validate (push) Failing after 3m8s

This commit is contained in:
ITWorx Pulse release export
2026-09-03 02:09:19 +02:00
commit bd774932d5
614 changed files with 77116 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
//go:build !linux
package hostcollect
import (
"errors"
"github.com/itworx/pulse/internal/host"
)
// readClockSync has no portable equivalent off Linux; the caller degrades to a warning.
func readClockSync() (host.RawTime, error) {
return host.RawTime{}, errors.New("hostcollect: clock synchronisation probe is only available on linux")
}