fst – Blame information for rev 4

Subversion Repositories:
Rev:
Rev Author Line No. Line
4 office 1 # A path to a file where FST will log events.
1 office 2 log: '/opt/fst/fst/log/fst.log'
3 # Settings for the metrics server.
4 metrics:
4 office 5 # Whether to enable the metrics server for this machine.
1 office 6 enable: Yes
4 office 7 # The IP address or hostname where the metrics server will listen for updates.
1 office 8 host: 127.0.0.1
4 office 9 # The port on which the metrics server will listen for updates.
1 office 10 port: 3000
11 timeout: 250
4 office 12 # The path to a JSON file where metrics shall be stored.
1 office 13 store: '/opt/fst/fst/store/sync-metrics.json'
4 office 14 # The port on which the public metrics frontend server will run.
1 office 15 wwwport: 1337
4 office 16 # A path pointing to the "fst-wwwroot" folder.
1 office 17 wwwroot: '/opt/fst/fst-wwwroot'
4 office 18 # Definition of users able to access the metrics server.
1 office 19 users:
20 - id: 1
21 username: demo
22 password: demo
23 displayName: demo
24 emails:
25 - value: demo@demo.net
26  
27  
28 # Settings for the distribution server.
29 distribution:
30 timeout: 250
31 reconnect: 60000
32 port: 1111
33 socket: '/var/run/fst-distribution.sock'
4 office 34 # The time interval for synchronizing FST messages.
1 office 35 peerSyncInterval: 60000
36 # The directory where the action directories are to be found.
37 # Action directories have the naming convention: <action>.d
38 action_directory: /opt/fst/fst/action
4 office 39 # A shared secret amongst all FST peers.
1 office 40 secret: 'h0g@ba'
4 office 41 # The path to a file containing a list of IP addresses or hostnames to distribute to.
1 office 42 peers: '/opt/fst/fst/sync-peers.txt'