-
Notifications
You must be signed in to change notification settings - Fork 4
/
skeeterrc
65 lines (51 loc) · 1.63 KB
/
skeeterrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
###############################################################################
# skeeterrc
#
# config file for skeeter
###############################################################################
# zeromq parameters
zmq_thread_pool_size=3
# the uri on which we publish database nofitications
pub_socket_uri=tcp://127.0.0.1:6666
# the high water mark: max number of messages to queue
# if not specified, the defualt is 'unlimited'
pub_socket_hwm=5
# timing parameters
# timeout for epoll() (in seconds)
epoll_timeout=10
# frequency (in seconds) that a heartbeat message is published
heartbeat_interval=10
# interval (in seconds) that we try to re-connect to the database
database_retry_interval=30
## -------------------------------------------------------------------------
## postgresql keyword options
## prefix with 'postgresql-'
## for example 'postgresql-dbname
## -------------------------------------------------------------------------
#postgresql-host
#postgresql-hostaddr
#postgresql-port
postgresql-dbname=postgres
#postgresql-user
#postgresql-password
#postgresql-connect_timeout
#postgresql-options
#postgresql-application_name
#postgresql-fallback_application_name
#postgresql-keepalives
#postgresql-keepalives_idle
#postgresql-keepalives_interval
#postgresql-keepalives_count
#postgresql-sslmode
#postgresql-requiressl
#postgresql-sslcert
#postgresql-sslkey
#postgresql-sslrootcert
#postgresql-sslcrl
#postgresql-krbsrvname
#postgresql-gsslib
#postgresql-service
## --------------------------------------------------------------------------
# channels to watch for
# comma separated list of strings
channels=channel1,channel2,channel3