2015-09-26 15:36:40 +00:00
|
|
|
// Copyright 2015 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2015-09-08 14:14:18 +00:00
|
|
|
// +build !nofilefd
|
|
|
|
|
|
|
|
package collector
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"os"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2016-08-11 23:21:00 +00:00
|
|
|
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2015-09-08 14:14:18 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
fileFDStatSubsystem = "filefd"
|
|
|
|
)
|
|
|
|
|
2016-08-11 23:21:00 +00:00
|
|
|
type fileFDStatCollector struct{}
|
2015-09-08 14:14:18 +00:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
Factories[fileFDStatSubsystem] = NewFileFDStatCollector
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewFileFDStatCollector returns a new Collector exposing file-nr stats.
|
|
|
|
func NewFileFDStatCollector() (Collector, error) {
|
2016-08-11 23:21:00 +00:00
|
|
|
return &fileFDStatCollector{}, nil
|
2015-09-08 14:14:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *fileFDStatCollector) Update(ch chan<- prometheus.Metric) (err error) {
|
2015-09-26 12:53:46 +00:00
|
|
|
fileFDStat, err := getFileFDStats(procFilePath("sys/fs/file-nr"))
|
2015-09-08 14:14:18 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("couldn't get file-nr: %s", err)
|
|
|
|
}
|
|
|
|
for name, value := range fileFDStat {
|
2016-01-13 14:09:01 +00:00
|
|
|
v, err := strconv.ParseFloat(value, 64)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("invalid value %s in file-nr: %s", value, err)
|
|
|
|
}
|
2016-08-11 23:21:00 +00:00
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(Namespace, fileFDStatSubsystem, name),
|
|
|
|
fmt.Sprintf("File descriptor statistics: %s.", name),
|
|
|
|
nil, nil,
|
|
|
|
),
|
|
|
|
prometheus.GaugeValue, v,
|
|
|
|
)
|
2015-09-08 14:14:18 +00:00
|
|
|
}
|
2016-08-11 23:21:00 +00:00
|
|
|
return nil
|
2015-09-08 14:14:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func getFileFDStats(fileName string) (map[string]string, error) {
|
|
|
|
file, err := os.Open(fileName)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
return parseFileFDStats(file, fileName)
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseFileFDStats(r io.Reader, fileName string) (map[string]string, error) {
|
|
|
|
var scanner = bufio.NewScanner(r)
|
|
|
|
scanner.Scan()
|
|
|
|
// The file-nr proc file is separated by tabs, not spaces.
|
|
|
|
line := strings.Split(string(scanner.Text()), "\u0009")
|
|
|
|
var fileFDStat = map[string]string{}
|
|
|
|
// The file-nr proc is only 1 line with 3 values.
|
|
|
|
fileFDStat["allocated"] = line[0]
|
2016-06-20 16:08:26 +00:00
|
|
|
// The second value is skipped as it will always be zero in linux 2.6.
|
2015-09-08 14:14:18 +00:00
|
|
|
fileFDStat["maximum"] = line[2]
|
|
|
|
|
|
|
|
return fileFDStat, nil
|
|
|
|
}
|