-
Notifications
You must be signed in to change notification settings - Fork 14
/
example_server.yaml
54 lines (48 loc) · 1.31 KB
/
example_server.yaml
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
logging: "info" # panic,fatal,warn,info,debug,trace
addr: ":8080"
metricsAddr: ":9090"
# pprofAddr: ":6060" # optional. if supplied it enables pprof server
labels:
ethpandaops: rocks
# Better to use a NTP server close eg.
# time.aws.com - AWS
# time.windows.com - Azure
# time.google.com - GCP
# pool.ntp.org - https://www.pool.ntp.org/zone/@
ntpServer: time.google.com
persistence:
enabled: false
# driverName: postgres
# connectionString: postgres://postgres:password@localhost:5432/xatu?sslmode=disable
# maxIdleConns: 2 # 0 = no idle connections are retained
# maxOpenConns: 0 # 0 = unlimited
store:
type: memory
# type: redis-cluster
# config:
# address: redis://<user>:<password>@<host>:<port>/<db>?addr=<host2>:<port2>&addr=<host3>:<port3>
# prefix: xatu
# type: redis-server
# config:
# address: redis://<user>:<pass>@<ip>:<port>/<db>
# prefix: xatu
geoip:
enabled: false
# type: maxmind
# config:
# database:
# city: ./GeoLite2-City.mmdb
# asn: ./GeoLite2-ASN.mmdb
services:
coordinator:
enabled: false # requires persistence to be enabled
# nodeRecord:
# maxQueueSize: 51200
# batchTimeout: 5s
# exportTimeout: 30s
# maxExportBatchSize: 512
eventIngester:
enabled: true
outputs:
- name: stdout
type: stdout