Merge pull request #104 from prometheus/remove-procfs-supported-fn

Inline and remove processCollectSupported().
This commit is contained in:
Julius Volz 2015-04-01 01:53:30 +02:00
commit 3657dc8002
1 changed files with 1 additions and 8 deletions

View File

@ -81,7 +81,7 @@ func NewProcessCollectorPIDFn(
}
// Set up process metric collection if supported by the runtime.
if processCollectSupported() {
if _, err := procfs.NewStat(); err == nil {
c.collectFn = c.processCollect
}
@ -103,13 +103,6 @@ func (c *processCollector) Collect(ch chan<- Metric) {
c.collectFn(ch)
}
func processCollectSupported() bool {
if _, err := procfs.NewStat(); err == nil {
return true
}
return false
}
// TODO(ts): Bring back error reporting by reverting 7faf9e7 as soon as the
// client allows users to configure the error behavior.
func (c *processCollector) processCollect(ch chan<- Metric) {