diff --git a/collector/conntrack_linux.go b/collector/conntrack_linux.go index 943155b4..3f435718 100644 --- a/collector/conntrack_linux.go +++ b/collector/conntrack_linux.go @@ -16,10 +16,6 @@ package collector import ( - "io/ioutil" - "strconv" - "strings" - "github.com/prometheus/client_golang/prometheus" ) @@ -67,15 +63,3 @@ func (c *conntrackCollector) Update(ch chan<- prometheus.Metric) (err error) { return nil } - -func readUintFromFile(path string) (uint64, error) { - data, err := ioutil.ReadFile(path) - if err != nil { - return 0, err - } - value, err := strconv.ParseUint(strings.TrimSpace(string(data)), 10, 64) - if err != nil { - return 0, err - } - return value, nil -} diff --git a/collector/helper.go b/collector/helper.go index 64205de3..271c6260 100644 --- a/collector/helper.go +++ b/collector/helper.go @@ -15,6 +15,7 @@ package collector import ( "fmt" + "io/ioutil" "strconv" "strings" ) @@ -29,3 +30,15 @@ func splitToInts(str string, sep string) (ints []int, err error) { } return ints, nil } + +func readUintFromFile(path string) (uint64, error) { + data, err := ioutil.ReadFile(path) + if err != nil { + return 0, err + } + value, err := strconv.ParseUint(strings.TrimSpace(string(data)), 10, 64) + if err != nil { + return 0, err + } + return value, nil +}