metadata.yaml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. type: splunkenterprise
  2. status:
  3. class: receiver
  4. stability:
  5. development: [metrics]
  6. distributions:
  7. codeowners:
  8. active: [shalper2, MovieStoreGuy]
  9. attributes:
  10. splunk.index.name:
  11. description: The name of the index reporting a specific KPI
  12. type: string
  13. splunk.indexer.status:
  14. description: The status message reported for a specific object
  15. type: string
  16. splunk.bucket.dir:
  17. description: The bucket super-directory (home, cold, thawed) for each index
  18. type: string
  19. splunk.queue.name:
  20. description: The name of the queue reporting a specific KPI
  21. type: string
  22. metrics:
  23. splunk.license.index.usage:
  24. enabled: true
  25. description: Gauge tracking the indexed license usage per index
  26. unit: By
  27. gauge:
  28. value_type: int
  29. attributes: [splunk.index.name]
  30. # 'services/server/introspection/indexer'
  31. splunk.indexer.throughput:
  32. enabled: true
  33. description: Gauge tracking average bytes per second throughput of indexer
  34. unit: By/s
  35. gauge:
  36. value_type: double
  37. # attribute `status` can be one of the following `normal`, `throttled`, `stopped`
  38. attributes: [splunk.indexer.status]
  39. # 'services/data/indexes-extended'
  40. splunk.data.indexes.extended.total.size:
  41. enabled: true
  42. description: Size in bytes on disk of this index
  43. unit: By
  44. gauge:
  45. value_type: int
  46. attributes: [splunk.index.name]
  47. splunk.data.indexes.extended.event.count:
  48. enabled: true
  49. description: Count of events for index, excluding frozen events. Approximately equal to the event_count sum of all buckets.
  50. unit: '{events}'
  51. gauge:
  52. value_type: int
  53. attributes: [splunk.index.name]
  54. splunk.data.indexes.extended.bucket.count:
  55. enabled: true
  56. description: Count of buckets per index
  57. unit: '{buckets}'
  58. gauge:
  59. value_type: int
  60. attributes: [splunk.index.name]
  61. splunk.data.indexes.extended.raw.size:
  62. enabled: true
  63. description: Size in bytes on disk of the <bucket>/rawdata/ directories of all buckets in this index, excluding frozen
  64. unit: By
  65. gauge:
  66. value_type: int
  67. attributes: [splunk.index.name]
  68. ## Broken down `bucket_dirs`
  69. splunk.data.indexes.extended.bucket.event.count:
  70. enabled: false
  71. description: Count of events in this bucket super-directory
  72. unit: '{events}'
  73. gauge:
  74. value_type: int
  75. attributes: [splunk.index.name, splunk.bucket.dir]
  76. splunk.data.indexes.extended.bucket.hot.count:
  77. enabled: false
  78. description: (If size > 0) Number of hot buckets
  79. unit: '{buckets}'
  80. gauge:
  81. value_type: int
  82. attributes: [splunk.index.name, splunk.bucket.dir]
  83. splunk.data.indexes.extended.bucket.warm.count:
  84. enabled: false
  85. description: (If size > 0) Number of warm buckets
  86. unit: '{buckets}'
  87. gauge:
  88. value_type: int
  89. attributes: [splunk.index.name, splunk.bucket.dir]
  90. #'services/server/introspection/queues'
  91. splunk.server.introspection.queues.current:
  92. enabled: true
  93. description: Gauge tracking current length of queue
  94. unit: '{queues}'
  95. gauge:
  96. value_type: int
  97. attributes: [splunk.queue.name]
  98. splunk.server.introspection.queues.current.bytes:
  99. enabled: true
  100. description: Gauge tracking current bytes waiting in queue
  101. unit: By
  102. gauge:
  103. value_type: int
  104. attributes: [splunk.queue.name]