bcache.go 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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 bcache provides access to statistics exposed by the bcache (Linux
  14. // block cache).
  15. package bcache
  16. // Stats contains bcache runtime statistics, parsed from /sys/fs/bcache/.
  17. //
  18. // The names and meanings of each statistic were taken from bcache.txt and
  19. // files in drivers/md/bcache in the Linux kernel source. Counters are uint64
  20. // (in-kernel counters are mostly unsigned long).
  21. type Stats struct {
  22. // The name of the bcache used to source these statistics.
  23. Name string
  24. Bcache BcacheStats
  25. Bdevs []BdevStats
  26. Caches []CacheStats
  27. }
  28. // BcacheStats contains statistics tied to a bcache ID.
  29. type BcacheStats struct {
  30. AverageKeySize uint64
  31. BtreeCacheSize uint64
  32. CacheAvailablePercent uint64
  33. Congested uint64
  34. RootUsagePercent uint64
  35. TreeDepth uint64
  36. Internal InternalStats
  37. FiveMin PeriodStats
  38. Total PeriodStats
  39. }
  40. // BdevStats contains statistics for one backing device.
  41. type BdevStats struct {
  42. Name string
  43. DirtyData uint64
  44. FiveMin PeriodStats
  45. Total PeriodStats
  46. }
  47. // CacheStats contains statistics for one cache device.
  48. type CacheStats struct {
  49. Name string
  50. IOErrors uint64
  51. MetadataWritten uint64
  52. Written uint64
  53. Priority PriorityStats
  54. }
  55. // PriorityStats contains statistics from the priority_stats file.
  56. type PriorityStats struct {
  57. UnusedPercent uint64
  58. MetadataPercent uint64
  59. }
  60. // InternalStats contains internal bcache statistics.
  61. type InternalStats struct {
  62. ActiveJournalEntries uint64
  63. BtreeNodes uint64
  64. BtreeReadAverageDurationNanoSeconds uint64
  65. CacheReadRaces uint64
  66. }
  67. // PeriodStats contains statistics for a time period (5 min or total).
  68. type PeriodStats struct {
  69. Bypassed uint64
  70. CacheBypassHits uint64
  71. CacheBypassMisses uint64
  72. CacheHits uint64
  73. CacheMissCollisions uint64
  74. CacheMisses uint64
  75. CacheReadaheads uint64
  76. }