metadata.yaml 1020 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. type: hostmetricsreceiver/memory
  2. parent: hostmetrics
  3. sem_conv_version: 1.9.0
  4. attributes:
  5. state:
  6. description: Breakdown of memory usage by type.
  7. type: string
  8. enum: [buffered, cached, inactive, free, slab_reclaimable, slab_unreclaimable, used]
  9. metrics:
  10. system.memory.usage:
  11. enabled: true
  12. description: Bytes of memory in use.
  13. unit: By
  14. sum:
  15. value_type: int
  16. aggregation_temporality: cumulative
  17. monotonic: false
  18. attributes: [state]
  19. system.memory.utilization:
  20. enabled: false
  21. description: Percentage of memory bytes in use.
  22. unit: 1
  23. gauge:
  24. value_type: double
  25. attributes: [state]
  26. system.linux.memory.available:
  27. enabled: false
  28. description: An estimate of how much memory is available for starting new applications, without swapping. This is a more accurate alternative than system.memory.usage with state=free. (Linux only)
  29. unit: By
  30. sum:
  31. value_type: int
  32. aggregation_temporality: cumulative
  33. monotonic: false