metadata.yaml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. plugin_name: python.d.plugin
  2. modules:
  3. - meta:
  4. plugin_name: python.d.plugin
  5. module_name: rethinkdbs
  6. monitored_instance:
  7. name: RethinkDB
  8. link: 'https://rethinkdb.com/'
  9. categories:
  10. - data-collection.database-servers
  11. icon_filename: 'rethinkdb.png'
  12. related_resources:
  13. integrations:
  14. list: []
  15. info_provided_to_referring_integrations:
  16. description: ''
  17. keywords:
  18. - rethinkdb
  19. - database
  20. - db
  21. most_popular: false
  22. overview:
  23. data_collection:
  24. metrics_description: 'This collector monitors metrics about RethinkDB clusters and database servers.'
  25. method_description: 'It uses the `rethinkdb` python module to connect to a RethinkDB server instance and gather statistics.'
  26. supported_platforms:
  27. include: []
  28. exclude: []
  29. multi_instance: true
  30. additional_permissions:
  31. description: ''
  32. default_behavior:
  33. auto_detection:
  34. description: 'When no configuration file is found, the collector tries to connect to 127.0.0.1:28015.'
  35. limits:
  36. description: ''
  37. performance_impact:
  38. description: ''
  39. setup:
  40. prerequisites:
  41. list:
  42. - title: 'Required python module'
  43. description: 'The collector requires the `rethinkdb` python module to be installed.'
  44. configuration:
  45. file:
  46. name: python.d/rethinkdbs.conf
  47. options:
  48. description: |
  49. There are 2 sections:
  50. * Global variables
  51. * One or more JOBS that can define multiple different instances to monitor.
  52. The following options can be defined globally: priority, penalty, autodetection_retry, update_every, but can also be defined per JOB to override the global values.
  53. Additionally, the following collapsed table contains all the options that can be configured inside a JOB definition.
  54. Every configuration JOB starts with a `job_name` value which will appear in the dashboard, unless a `name` parameter is specified.
  55. folding:
  56. title: "Config options"
  57. enabled: true
  58. list:
  59. - name: update_every
  60. description: Sets the default data collection frequency.
  61. default_value: 5
  62. required: false
  63. - name: priority
  64. description: Controls the order of charts at the netdata dashboard.
  65. default_value: 60000
  66. required: false
  67. - name: autodetection_retry
  68. description: Sets the job re-check interval in seconds.
  69. default_value: 0
  70. required: false
  71. - name: penalty
  72. description: Indicates whether to apply penalty to update_every in case of failures.
  73. default_value: yes
  74. required: false
  75. - name: name
  76. description: Job name. This value will overwrite the `job_name` value. JOBS with the same name are mutually exclusive. Only one of them will be allowed running at any time. This allows autodetection to try several alternatives and pick the one that works.
  77. default_value: ''
  78. required: false
  79. - name: host
  80. description: Hostname or ip of the RethinkDB server.
  81. default_value: 'localhost'
  82. required: false
  83. - name: port
  84. description: Port to connect to the RethinkDB server.
  85. default_value: '28015'
  86. required: false
  87. - name: user
  88. description: The username to use to connect to the RethinkDB server.
  89. default_value: 'admin'
  90. required: false
  91. - name: password
  92. description: The password to use to connect to the RethinkDB server.
  93. default_value: ''
  94. required: false
  95. - name: timeout
  96. description: Set a connect timeout to the RethinkDB server.
  97. default_value: '2'
  98. required: false
  99. examples:
  100. folding:
  101. enabled: false
  102. title: "Config"
  103. list:
  104. - name: Local RethinkDB server
  105. description: An example of a configuration for a local RethinkDB server
  106. folding:
  107. enabled: false
  108. config: |
  109. localhost:
  110. name: 'local'
  111. host: '127.0.0.1'
  112. port: 28015
  113. user: "user"
  114. password: "pass"
  115. troubleshooting:
  116. problems:
  117. list: []
  118. alerts: []
  119. metrics:
  120. folding:
  121. title: Metrics
  122. enabled: false
  123. description: ""
  124. availability: []
  125. scopes:
  126. - name: global
  127. description: "These metrics refer to the entire monitored application."
  128. labels: []
  129. metrics:
  130. - name: rethinkdb.cluster_connected_servers
  131. description: Connected Servers
  132. unit: "servers"
  133. chart_type: stacked
  134. dimensions:
  135. - name: connected
  136. - name: missing
  137. - name: rethinkdb.cluster_clients_active
  138. description: Active Clients
  139. unit: "clients"
  140. chart_type: line
  141. dimensions:
  142. - name: active
  143. - name: rethinkdb.cluster_queries
  144. description: Queries
  145. unit: "queries/s"
  146. chart_type: line
  147. dimensions:
  148. - name: queries
  149. - name: rethinkdb.cluster_documents
  150. description: Documents
  151. unit: "documents/s"
  152. chart_type: line
  153. dimensions:
  154. - name: reads
  155. - name: writes
  156. - name: database server
  157. description: ""
  158. labels: []
  159. metrics:
  160. - name: rethinkdb.client_connections
  161. description: Client Connections
  162. unit: "connections"
  163. chart_type: line
  164. dimensions:
  165. - name: connections
  166. - name: rethinkdb.clients_active
  167. description: Active Clients
  168. unit: "clients"
  169. chart_type: line
  170. dimensions:
  171. - name: active
  172. - name: rethinkdb.queries
  173. description: Queries
  174. unit: "queries/s"
  175. chart_type: line
  176. dimensions:
  177. - name: queries
  178. - name: rethinkdb.documents
  179. description: Documents
  180. unit: "documents/s"
  181. chart_type: line
  182. dimensions:
  183. - name: reads
  184. - name: writes