metadata.yaml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. plugin_name: charts.d.plugin
  2. modules:
  3. - meta:
  4. plugin_name: charts.d.plugin
  5. module_name: ap
  6. monitored_instance:
  7. name: Access Points
  8. link: "https://learn.netdata.cloud/docs/data-collection/networking-stack-and-network-interfaces/linux-access-points"
  9. categories:
  10. - data-collection.linux-systems.network-metrics
  11. icon_filename: "network-wired.svg"
  12. related_resources:
  13. integrations:
  14. list: []
  15. info_provided_to_referring_integrations:
  16. description: ""
  17. keywords:
  18. - ap
  19. - access
  20. - point
  21. - wireless
  22. - network
  23. most_popular: false
  24. overview:
  25. data_collection:
  26. metrics_description: "The ap collector visualizes data related to wireless access points."
  27. method_description: "It uses the `iw` command line utility to detect access points. For each interface that is of `type AP`, it then runs `iw INTERFACE station dump` and collects statistics."
  28. supported_platforms:
  29. include: [Linux]
  30. exclude: []
  31. multi_instance: false
  32. additional_permissions:
  33. description: ""
  34. default_behavior:
  35. auto_detection:
  36. description: "The plugin is able to auto-detect if you are running access points on your linux box."
  37. limits:
  38. description: ""
  39. performance_impact:
  40. description: ""
  41. setup:
  42. prerequisites:
  43. list:
  44. - title: "Install charts.d plugin"
  45. description: |
  46. If [using our official native DEB/RPM packages](https://github.com/netdata/netdata/blob/master/packaging/installer/UPDATE.md#determine-which-installation-method-you-used), make sure `netdata-plugin-chartsd` is installed.
  47. - title: "`iw` utility."
  48. description: "Make sure the `iw` utility is installed."
  49. configuration:
  50. file:
  51. name: charts.d/ap.conf
  52. options:
  53. description: |
  54. The config file is sourced by the charts.d plugin. It's a standard bash file.
  55. The following collapsed table contains all the options that can be configured for the ap collector.
  56. folding:
  57. title: "Config options"
  58. enabled: true
  59. list:
  60. - name: ap_update_every
  61. description: The data collection frequency. If unset, will inherit the netdata update frequency.
  62. default_value: 1
  63. required: false
  64. - name: ap_priority
  65. description: Controls the order of charts at the netdata dashboard.
  66. default_value: 6900
  67. required: false
  68. - name: ap_retries
  69. description: The number of retries to do in case of failure before disabling the collector.
  70. default_value: 10
  71. required: false
  72. examples:
  73. folding:
  74. enabled: false
  75. title: "Config"
  76. list:
  77. - name: Change the collection frequency
  78. description: Specify a custom collection frequence (update_every) for this collector
  79. config: |
  80. # the data collection frequency
  81. # if unset, will inherit the netdata update frequency
  82. ap_update_every=10
  83. # the charts priority on the dashboard
  84. #ap_priority=6900
  85. # the number of retries to do in case of failure
  86. # before disabling the module
  87. #ap_retries=10
  88. troubleshooting:
  89. problems:
  90. list: []
  91. alerts: []
  92. metrics:
  93. folding:
  94. title: Metrics
  95. enabled: false
  96. description: ""
  97. availability: []
  98. scopes:
  99. - name: wireless device
  100. description: "These metrics refer to the entire monitored application."
  101. labels: []
  102. metrics:
  103. - name: ap.clients
  104. description: Connected clients to ${ssid} on ${dev}
  105. unit: "clients"
  106. chart_type: line
  107. dimensions:
  108. - name: clients
  109. - name: ap.net
  110. description: Bandwidth for ${ssid} on ${dev}
  111. unit: "kilobits/s"
  112. chart_type: area
  113. dimensions:
  114. - name: received
  115. - name: sent
  116. - name: ap.packets
  117. description: Packets for ${ssid} on ${dev}
  118. unit: "packets/s"
  119. chart_type: line
  120. dimensions:
  121. - name: received
  122. - name: sent
  123. - name: ap.issues
  124. description: Transmit Issues for ${ssid} on ${dev}
  125. unit: "issues/s"
  126. chart_type: line
  127. dimensions:
  128. - name: retries
  129. - name: failures
  130. - name: ap.signal
  131. description: Average Signal for ${ssid} on ${dev}
  132. unit: "dBm"
  133. chart_type: line
  134. dimensions:
  135. - name: average signal
  136. - name: ap.bitrate
  137. description: Bitrate for ${ssid} on ${dev}
  138. unit: "Mbps"
  139. chart_type: line
  140. dimensions:
  141. - name: receive
  142. - name: transmit
  143. - name: expected