fs.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. // Copyright 2017 The Prometheus Authors
  2. // Licensed under the Apache License, Version 2.0 (the "License");
  3. // you may not use this file except in compliance with the License.
  4. // You may obtain a copy of the License at
  5. //
  6. // http://www.apache.org/licenses/LICENSE-2.0
  7. //
  8. // Unless required by applicable law or agreed to in writing, software
  9. // distributed under the License is distributed on an "AS IS" BASIS,
  10. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. // See the License for the specific language governing permissions and
  12. // limitations under the License.
  13. package sysfs
  14. import (
  15. "fmt"
  16. "os"
  17. "path/filepath"
  18. "github.com/prometheus/procfs/bcache"
  19. "github.com/prometheus/procfs/xfs"
  20. )
  21. // FS represents the pseudo-filesystem sys, which provides an interface to
  22. // kernel data structures.
  23. type FS string
  24. // DefaultMountPoint is the common mount point of the sys filesystem.
  25. const DefaultMountPoint = "/sys"
  26. // NewFS returns a new FS mounted under the given mountPoint. It will error
  27. // if the mount point can't be read.
  28. func NewFS(mountPoint string) (FS, error) {
  29. info, err := os.Stat(mountPoint)
  30. if err != nil {
  31. return "", fmt.Errorf("could not read %s: %s", mountPoint, err)
  32. }
  33. if !info.IsDir() {
  34. return "", fmt.Errorf("mount point %s is not a directory", mountPoint)
  35. }
  36. return FS(mountPoint), nil
  37. }
  38. // Path returns the path of the given subsystem relative to the sys root.
  39. func (fs FS) Path(p ...string) string {
  40. return filepath.Join(append([]string{string(fs)}, p...)...)
  41. }
  42. // XFSStats retrieves XFS filesystem runtime statistics for each mounted XFS
  43. // filesystem. Only available on kernel 4.4+. On older kernels, an empty
  44. // slice of *xfs.Stats will be returned.
  45. func (fs FS) XFSStats() ([]*xfs.Stats, error) {
  46. matches, err := filepath.Glob(fs.Path("fs/xfs/*/stats/stats"))
  47. if err != nil {
  48. return nil, err
  49. }
  50. stats := make([]*xfs.Stats, 0, len(matches))
  51. for _, m := range matches {
  52. f, err := os.Open(m)
  53. if err != nil {
  54. return nil, err
  55. }
  56. // "*" used in glob above indicates the name of the filesystem.
  57. name := filepath.Base(filepath.Dir(filepath.Dir(m)))
  58. // File must be closed after parsing, regardless of success or
  59. // failure. Defer is not used because of the loop.
  60. s, err := xfs.ParseStats(f)
  61. _ = f.Close()
  62. if err != nil {
  63. return nil, err
  64. }
  65. s.Name = name
  66. stats = append(stats, s)
  67. }
  68. return stats, nil
  69. }
  70. // BcacheStats retrieves bcache runtime statistics for each bcache.
  71. func (fs FS) BcacheStats() ([]*bcache.Stats, error) {
  72. matches, err := filepath.Glob(fs.Path("fs/bcache/*-*"))
  73. if err != nil {
  74. return nil, err
  75. }
  76. stats := make([]*bcache.Stats, 0, len(matches))
  77. for _, uuidPath := range matches {
  78. // "*-*" in glob above indicates the name of the bcache.
  79. name := filepath.Base(uuidPath)
  80. // stats
  81. s, err := bcache.GetStats(uuidPath)
  82. if err != nil {
  83. return nil, err
  84. }
  85. s.Name = name
  86. stats = append(stats, s)
  87. }
  88. return stats, nil
  89. }