| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- probes:
- - name: latency
- type: std_fping
- output:
- - vodka
- public_dns:
- hosts:
- - host: 8.8.8.8
- name: Google
- color: red
- - host: 4.2.2.1
- name: Level(3)
- color: blue
- - host: 208.67.222.222
- name: OpenDNS
- color: orange
- raspis:
- hosts:
- - host: 192.168.178.49
- name: Blaubeere
- color: red
- - host: 192.168.178.43
- name: Himbeere
- color: blue
- plugins:
- - name: std_fping
- type: fping
- count: 10
- interval: 3s
- output:
- - vodka
- - name: vodka
- type: vodka
- logging:
- version: 1
- formatters:
- simple:
- format: '%(asctime)s - %(name)s - %(levelname)s: %(message)s'
- handlers:
- console:
- class: logging.StreamHandler
- level: DEBUG
- formatter: simple
- stream: ext://sys.stdout
- loggers:
- vodka:
- level: DEBUG
- handlers:
- - console
- data:
- - type: fping
- handlers:
- - type: index
- index: host
- - type: store
- container: list
- limit: 500
- apps:
- graphsrv:
- tmpl_engine: jinja2
- enabled: true
- graphs:
- multitarget:
- id_field: host
- type: multitarget
- plot_y: avg
- format_y: ms
- smokestack:
- id_field: host
- type: smokestack
- plot_y: avg
- plugins:
- - name: http
- type: flask
- host: 0.0.0.0
- port: 7021
- debug: true
- static_url_path: /static
- server: self
- async: thread
- routes:
- /targets : graphsrv->targets
- /graph_data :
- methods:
- - POST
- - GET
- target: graphsrv->graph_data
- /graph : graphsrv->graph_view
- /overview_read_file : graphsrv->overview_read_file
- /: graphsrv->overview_view
|