Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.79 KB | None | 0 0
  1. ## The path data gets stored into.
  2. ##
  3. ## Default: /data/dalmatinerpx
  4. ##
  5. ## Acceptable values:
  6. ## - text
  7. run_user_home = /data/dalmatinerpx
  8.  
  9. ## The bucket where scraped Prometheus data will be stored. This property
  10. ## is preceded by the name of the scraper e.g.
  11. ## prometheus_scrapers.my_scraper_name.bucket = PromLocal
  12. ##
  13. ## Default: prom
  14. ##
  15. ## Acceptable values:
  16. ## - text
  17. ## prometheus_scrapers.node_exporter.bucket = prom
  18.  
  19. ## The metrics HTTP endpoint of the target system for scraping.
  20. ## This property is preceded by the name of the scraper e.g.
  21. ## prometheus_scrapers.my_scraper_name.url = "http://localhost:9090/metrics"
  22. ##
  23. ## Default: http://localhost:9100/metrics
  24. ##
  25. ## Acceptable values:
  26. ## - text
  27. ## prometheus_scrapers.node_exporter.url = http://localhost:9100/metrics
  28.  
  29. ## Interval of time between scraping requests to the target endpoint.
  30. ## This property is prefixed by the name of the scraper e.g.
  31. ## prometheus_scrapers.my_scraper_name.frequency = 10s
  32. ##
  33. ## Default: 10s
  34. ##
  35. ## Acceptable values:
  36. ## - a time duration with units, e.g. '10s' for 10 seconds
  37. ## prometheus_scrapers.node_exporter.frequency = 10s
  38.  
  39. ## The bucket where incomming data will be stored by the listener.
  40. ## This property is prefixed by the name of the line protocol used, which can
  41. ## be one of 'dp_influx', 'dp_graphite', 'dp_otsdb', 'dp_bsdsyslog',
  42. ## 'dp_metrics2' or 'dp_prom_writer' e.g.
  43. ## listeners.dp_influx.bucket = InfluxData
  44. ##
  45. ## Default: InfluxDB
  46. ##
  47. ## Acceptable values:
  48. ## - text
  49. #listeners.dp_influx.bucket = InfluxDB
  50. listeners.dp_graphite.bucket = Graphite
  51.  
  52. ## The port used for listening.
  53. ## This property is prefixed by the name of the line protocol used, which can
  54. ## be one of 'dp_influx', 'dp_graphite', 'dp_otsdb', 'dp_bsdsyslog',
  55. ## 'dp_metrics2' or 'dp_prom_writer' e.g.
  56. ## listeners.dp_influx.port = 8086
  57. ##
  58. ## Default: 8086
  59. ##
  60. ## Acceptable values:
  61. ## - an integer
  62. #listeners.dp_influx.port = 8086
  63. #listeners.dp_otsdb.port = 4242
  64. listeners.dp_graphite.port = 2003
  65.  
  66. ## The transport used for listening, which may either be 'http', 'tcp' or
  67. ## 'udp'.
  68. ## This property is prefixed by the name of the line protocol used, which can
  69. ## be one of 'dp_influx', 'dp_graphite', 'dp_otsdb', 'dp_bsdsyslog',
  70. ## 'dp_metrics2' or 'dp_prom_writer'
  71. ## listeners.dp_influx.protocol = http
  72. ##
  73. ## Default: http
  74. ##
  75. ## Acceptable values:
  76. ## - text
  77. #listeners.dp_influx.protocol = http
  78. #listeners.dp_otsdb.protocol = tcp
  79. listeners.dp_graphite.protocol = tcp
  80.  
  81. ## Name of the Erlang node
  82. ##
  83. ## Default: dalmatinerpx@127.0.0.1
  84. ##
  85. ## Acceptable values:
  86. ## - text
  87. nodename = dalmatinerpx@127.0.0.1
  88.  
  89. ## Cookie for distributed node communication. All nodes in the
  90. ## same cluster should use the same cookie or they will not be able to
  91. ## communicate.
  92. ##
  93. ## Default: ddb_proxy_cookie
  94. ##
  95. ## Acceptable values:
  96. ## - text
  97. distributed_cookie = ddb_proxy_cookie
  98. #distributed_cookie = erlang
  99.  
  100. ## Sets the number of threads in async thread pool, valid range
  101. ## is 0-1024. If thread support is available, the default is 64.
  102. ## More information at: http://erlang.org/doc/man/erl.html
  103. ##
  104. ## Default: 30
  105. ##
  106. ## Acceptable values:
  107. ## - an integer
  108. erlang.async_threads = 30
  109.  
  110. ## The TCP hostname or IP for the backend server.
  111. ## Set this or backend_server.
  112. ##
  113. ## Default: 127.0.0.1
  114. ##
  115. ## Acceptable values:
  116. ## - text
  117. #idx.pg.backend_host = 127.0.0.1
  118.  
  119. ## The TCP port for the backend server
  120. ## Set this or backend_server.
  121. ##
  122. ## Default: 5432
  123. ##
  124. ## Acceptable values:
  125. ## - an integer
  126. #idx.pg.backend_port = 5432
  127.  
  128. ## Initial number of conneciton pool workers
  129. ##
  130. ## Default: 20
  131. ##
  132. ## Acceptable values:
  133. ## - an integer
  134. #idx.pg.size = 20
  135.  
  136. ## Number of overflow connections - be careful with those!
  137. ##
  138. ## Default: 0
  139. ##
  140. ## Acceptable values:
  141. ## - an integer
  142. #idx.pg.max_overflow = 0
  143.  
  144. ## Initial number of conneciton pool workers
  145. ##
  146. ## Default: metric_metadata
  147. ##
  148. ## Acceptable values:
  149. ## - text
  150. #idx.pg.database = metric_metadata
  151.  
  152. ## Username for the conection
  153. ##
  154. ## Default: ddb
  155. ##
  156. ## Acceptable values:
  157. ## - text
  158. #idx.pg.username = ddb
  159.  
  160. ## Password for the conection
  161. ##
  162. ## Default: ddb
  163. ##
  164. ## Acceptable values:
  165. ## - text
  166. #idx.pg.password = ddb
  167.  
  168. ## DQE Indexing backend like dqe_idx_pg or dqe_idx_ddb
  169. ##
  170. ## Default: dqe_idx_ddb
  171. ##
  172. ## Acceptable values:
  173. ## - text
  174. idx.backend = dqe_idx_ddb
  175.  
  176. ## The TCP hostname or IP for the backend server.
  177. ## Set this or backend_server.
  178. ##
  179. ## Default: 127.0.0.1
  180. ##
  181. ## Acceptable values:
  182. ## - text
  183. ddb_connection.backend_host = 127.0.0.1
  184.  
  185. ## The TCP port for the backend server
  186. ## Set this or backend_server.
  187. ##
  188. ## Default: 5555
  189. ##
  190. ## Acceptable values:
  191. ## - an integer
  192. ddb_connection.backend_port = 5555
  193.  
  194. ## Maximum number of datapoints to read in 1 chunk
  195. ##
  196. ## Default: 604800
  197. ##
  198. ## Acceptable values:
  199. ## - an integer
  200. ddb_connection.max_read = 604800
  201.  
  202. ## maximum pool size
  203. ##
  204. ## Default: 20
  205. ##
  206. ## Acceptable values:
  207. ## - an integer
  208. ddb_connection.pool.size = 20
  209.  
  210. ## maximum number of workers created if pool is empty
  211. ##
  212. ## Default: 5
  213. ##
  214. ## Acceptable values:
  215. ## - an integer
  216. ddb_connection.pool.max = 5
  217.  
  218. ## where do you want the console.log output:
  219. ## off : nowhere
  220. ## file: the file specified by log.console.file
  221. ## console : standard out
  222. ## both : log.console.file and standard out.
  223. ##
  224. ## Default: file
  225. ##
  226. ## Acceptable values:
  227. ## - one of: off, file, console, both
  228. log.console = file
  229.  
  230. ## the log level of the console log
  231. ##
  232. ## Default: info
  233. ##
  234. ## Acceptable values:
  235. ## - one of: debug, info, warning, error
  236. log.console.level = info
  237.  
  238. ## location of the console log
  239. ##
  240. ## Default: /data/dalmatinerpx/log/console.log
  241. ##
  242. ## Acceptable values:
  243. ## - text
  244. log.console.file = /data/dalmatinerpx/log/console.log
  245.  
  246. ## location of the error log
  247. ##
  248. ## Default: /data/dalmatinerpx/log/error.log
  249. ##
  250. ## Acceptable values:
  251. ## - text
  252. log.error.file = /data/dalmatinerpx/log/error.log
  253.  
  254. ## location of the debug log
  255. ##
  256. ## Default: /data/dalmatinerpx/log/debug.log
  257. ##
  258. ## Acceptable values:
  259. ## - text
  260. log.debug.file = /data/dalmatinerpx/log/debug.log
  261.  
  262. ## turn on syslog
  263. ##
  264. ## Default: off
  265. ##
  266. ## Acceptable values:
  267. ## - one of: on, off
  268. log.syslog = off
  269.  
  270. ## Whether to write a crash log, and where.
  271. ## Commented/omitted/undefined means no crash logger.
  272. ##
  273. ## Default: /data/dalmatinerpx/log/crash.log
  274. ##
  275. ## Acceptable values:
  276. ## - text
  277. log.crash.file = /data/dalmatinerpx/log/crash.log
  278.  
  279. ## Maximum size in bytes of events in the crash log - defaults to 65536
  280. ##
  281. ## Default: 64KB
  282. ##
  283. ## Acceptable values:
  284. ## - a byte size with units, e.g. 10GB
  285. log.crash.msg_size = 64KB
  286.  
  287. ## Maximum size of the crash log in bytes, before its rotated, set
  288. ## to 0 to disable rotation - default is 0
  289. ##
  290. ## Default: 10MB
  291. ##
  292. ## Acceptable values:
  293. ## - a byte size with units, e.g. 10GB
  294. log.crash.size = 10MB
  295.  
  296. ## What time to rotate the crash log - default is no time
  297. ## rotation. See the lager README for a description of this format:
  298. ## https://github.com/basho/lager/blob/master/README.org
  299. ##
  300. ## Default: $D0
  301. ##
  302. ## Acceptable values:
  303. ## - text
  304. log.crash.date = $D0
  305.  
  306. ## Number of rotated crash logs to keep, 0 means keep only the
  307. ## current one - default is 0
  308. ##
  309. ## Default: 5
  310. ##
  311. ## Acceptable values:
  312. ## - an integer
  313. log.crash.count = 5
  314.  
  315. ## Whether to redirect error_logger messages into lager - defaults to true
  316. ##
  317. ## Default: on
  318. ##
  319. ## Acceptable values:
  320. ## - one of: on, off
  321. log.error.redirect = on
  322.  
  323. ## maximum number of error_logger messages to handle in a second
  324. ## lager 2.0.0 shipped with a limit of 50, which is a little low for riak's startup
  325. ##
  326. ## Default: 100
  327. ##
  328. ## Acceptable values:
  329. ## - an integer
  330. log.error.messages_per_second = 100
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement