mirror of
https://github.com/prometheus/node_exporter.git
synced 2025-01-30 07:12:35 -08:00
Merge pull request #532 from prometheus/grobie/remove-extra-file-check
mdadm: Remove extra file existence check
This commit is contained in:
commit
41a44a4d24
|
@ -133,7 +133,7 @@ func evalBuildline(buildline string) (int64, error) {
|
|||
func parseMdstat(mdStatusFilePath string) ([]mdStatus, error) {
|
||||
content, err := ioutil.ReadFile(mdStatusFilePath)
|
||||
if err != nil {
|
||||
return []mdStatus{}, fmt.Errorf("error parsing mdstat: %s", err)
|
||||
return []mdStatus{}, err
|
||||
}
|
||||
|
||||
lines := strings.Split(string(content), "\n")
|
||||
|
@ -257,16 +257,12 @@ var (
|
|||
|
||||
func (c *mdadmCollector) Update(ch chan<- prometheus.Metric) error {
|
||||
statusfile := procFilePath("mdstat")
|
||||
if _, err := os.Stat(statusfile); err != nil {
|
||||
mdstate, err := parseMdstat(statusfile)
|
||||
if err != nil {
|
||||
if os.IsNotExist(err) {
|
||||
log.Debugf("Not collecting mdstat, file does not exist: %s", statusfile)
|
||||
return nil
|
||||
}
|
||||
return err
|
||||
}
|
||||
|
||||
mdstate, err := parseMdstat(statusfile)
|
||||
if err != nil {
|
||||
return fmt.Errorf("error parsing mdstatus: %s", err)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue