Bump procfs to v0.0.7 (#1538)

Update Prometheus procfs library to the latest release.

Signed-off-by: Ben Kochie <superq@gmail.com>
This commit is contained in:
Ben Kochie 2019-11-16 18:32:15 +01:00 committed by GitHub
commit 8a4c9c154b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 1595 additions and 171 deletions

View file

@ -16,9 +16,10 @@ package procfs
import (
"bufio"
"bytes"
"io/ioutil"
"strconv"
"strings"
"github.com/prometheus/procfs/internal/util"
)
// CPUInfo contains general information about a system CPU found in /proc/cpuinfo
@ -54,7 +55,7 @@ type CPUInfo struct {
// CPUInfo returns information about current system CPUs.
// See https://www.kernel.org/doc/Documentation/filesystems/proc.txt
func (fs FS) CPUInfo() ([]CPUInfo, error) {
data, err := ioutil.ReadFile(fs.proc.Path("cpuinfo"))
data, err := util.ReadFileNoStat(fs.proc.Path("cpuinfo"))
if err != nil {
return nil, err
}