comparison dash.conf @ 7:c8cb2aa0b72c

fixed default condifuration
author sean
date Wed, 22 Jul 2015 13:31:25 +0200
parents c49f7fe82743
children 7a573ec679a6
comparison
equal deleted inserted replaced
6:3acc5164369e 7:c8cb2aa0b72c
2 ### created by sean engelhardt >sean.engelhardt@intevation.de 2 ### created by sean engelhardt >sean.engelhardt@intevation.de
3 ### license: GNU GPL >= v2. See LICENSE for details 3 ### license: GNU GPL >= v2. See LICENSE for details
4 ### 4 ###
5 ### Usage: 5 ### Usage:
6 ### define the tiles for the dashboard in sections 6 ### define the tiles for the dashboard in sections
7 ###
8 ### options for tiles:
9 ###
10 ### type
11 ### values: mon, d3.js
12 ###
13 ### source (only if type = mon)
14 ### value: IP or FQDN
15 ### status
16 ###
17 ### status (for debug purpose only | only if type = mon)
18 ### values: up, down
19 ###
20 ### example:
21 ### [tile1]
22 ### type=mon
23 ### source=192.168.0.2
24 ### status=up
25 7
8 # Settings:
9 # example:
10 # --------------------
11 # [settings]
12 # show_top_bar=True
13 # --------------------
14 # options:
15 # show_top_bar (True / False) [optional]
16 # If True, the dashboard will show the current date and the time on the top
17 # if False, the dashboard will not show a top-bar
18 # default: True
19 # hint: the top-bar has got a height of 5%!
20
21 [settings]
22 show_top_bar=True
23
24 # Tiles:
25 # example:
26 # --------------------
27 # [tile1]
28 # type=mon
29 # source=192.168.0.2
30 # status=up
31 # --------------------
32 # options:
33 # type (mon / d3js) [required]
34 # tells the program what kind of tile you need.
35 # a "mon" tile can be used for IT infrastructure monitoring purposes
36 # a d3js tile can be used to display a chart
37 # default: -
38 #
39 # source (<IP> or <FQDN>) [required for mon-types]
40 # ONLY FOR MON-Type tiles!
41 # tells the tile which resource to watch
42 # default: none
43 #
44 # status: (up / down) [required]
45 # ONLY FOR DEBUGGING PURPOSE - WILL BE REMOVED LATER
46 # simulates up and down events for mon-type-tiles
26 47
27 [tile1] 48 [tile1]
28 type=mon 49 type=mon
29 source=192.168.0.2 50 source=192.168.0.2
30 status=down 51 status=down
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)