config.yml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. probes:
  2. - name: latency
  3. type: std_fping
  4. output:
  5. - vodka
  6. public_dns:
  7. hosts:
  8. - host: 8.8.8.8
  9. name: Google
  10. color: red
  11. - host: 4.2.2.1
  12. name: Level(3)
  13. color: blue
  14. - host: 208.67.222.222
  15. name: OpenDNS
  16. color: orange
  17. - host: 213.168.112.60
  18. name: NetAachen
  19. color: green
  20. inet:
  21. hosts:
  22. - host: nexus.vls.io
  23. name: vls.io
  24. color: red
  25. - host: netaachen.de
  26. name: netaachen.de
  27. color: blue
  28. - host: taz.de
  29. name: taz.de
  30. color: orange
  31. raspi:
  32. hosts:
  33. - host: 192.168.178.49
  34. name: Blaubeere
  35. color: red
  36. - host: 192.168.178.43
  37. name: Himbeere
  38. color: blue
  39. repeater:
  40. hosts:
  41. - host: 192.168.178.64
  42. name: Repeater1750
  43. color: red
  44. - host: 192.168.178.34
  45. name: Repeater7330
  46. color: blue
  47. - host: 192.168.178.24
  48. name: Fritzbox7490
  49. color: orange
  50. pc:
  51. hosts:
  52. - host: 192.168.178.36
  53. name: cbase
  54. color: red
  55. - host: 192.168.178.28
  56. name: blackbox
  57. color: blue
  58. - host: 192.168.178.33
  59. name: cg-x250
  60. color: orange
  61. mobil:
  62. hosts:
  63. - host: 192.168.178.51
  64. name: lilith-redmi
  65. color: red
  66. - host: 192.168.178.27
  67. name: cg-android
  68. color: blue
  69. - host: 192.168.178.45
  70. name: elise-ip4
  71. color: orange
  72. sonos:
  73. hosts:
  74. - host: 192.168.178.23
  75. name: connect
  76. color: red
  77. - host: 192.168.178.26
  78. name: p3
  79. color: blue
  80. - host: 192.168.178.31
  81. name: p5
  82. color: orange
  83. - host: 192.168.178.25
  84. name: amp
  85. color: green
  86. plugins:
  87. - name: std_fping
  88. type: fping
  89. count: 10
  90. interval: 3s
  91. output:
  92. - vodka
  93. - name: vodka
  94. type: vodka
  95. logging:
  96. version: 1
  97. formatters:
  98. simple:
  99. format: '%(asctime)s - %(name)s - %(levelname)s: %(message)s'
  100. handlers:
  101. console:
  102. class: logging.StreamHandler
  103. level: DEBUG
  104. formatter: simple
  105. stream: ext://sys.stdout
  106. loggers:
  107. vodka:
  108. level: DEBUG
  109. handlers:
  110. - console
  111. data:
  112. - type: fping
  113. handlers:
  114. - type: index
  115. index: host
  116. - type: store
  117. container: list
  118. limit: 500
  119. apps:
  120. graphsrv:
  121. tmpl_engine: jinja2
  122. enabled: true
  123. graphs:
  124. multitarget:
  125. id_field: host
  126. type: multitarget
  127. plot_y: avg
  128. format_y: ms
  129. smokestack:
  130. id_field: host
  131. type: smokestack
  132. plot_y: avg
  133. plugins:
  134. - name: http
  135. type: flask
  136. host: 0.0.0.0
  137. port: 7021
  138. debug: true
  139. static_url_path: /static
  140. server: self
  141. async: thread
  142. routes:
  143. /targets : graphsrv->targets
  144. /graph_data :
  145. methods:
  146. - POST
  147. - GET
  148. target: graphsrv->graph_data
  149. /graph : graphsrv->graph_view
  150. /overview_read_file : graphsrv->overview_read_file
  151. /: graphsrv->overview_view