fs.go 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package procfs
  2. import (
  3. "fmt"
  4. "os"
  5. "path"
  6. "github.com/prometheus/procfs/xfs"
  7. )
  8. // FS represents the pseudo-filesystem proc, which provides an interface to
  9. // kernel data structures.
  10. type FS string
  11. // DefaultMountPoint is the common mount point of the proc filesystem.
  12. const DefaultMountPoint = "/proc"
  13. // NewFS returns a new FS mounted under the given mountPoint. It will error
  14. // if the mount point can't be read.
  15. func NewFS(mountPoint string) (FS, error) {
  16. info, err := os.Stat(mountPoint)
  17. if err != nil {
  18. return "", fmt.Errorf("could not read %s: %s", mountPoint, err)
  19. }
  20. if !info.IsDir() {
  21. return "", fmt.Errorf("mount point %s is not a directory", mountPoint)
  22. }
  23. return FS(mountPoint), nil
  24. }
  25. // Path returns the path of the given subsystem relative to the procfs root.
  26. func (fs FS) Path(p ...string) string {
  27. return path.Join(append([]string{string(fs)}, p...)...)
  28. }
  29. // XFSStats retrieves XFS filesystem runtime statistics.
  30. func (fs FS) XFSStats() (*xfs.Stats, error) {
  31. f, err := os.Open(fs.Path("fs/xfs/stat"))
  32. if err != nil {
  33. return nil, err
  34. }
  35. defer f.Close()
  36. return xfs.ParseStats(f)
  37. }