Skip to content

Commit

Permalink
feat: add new configs to example.config.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
tolgaOzen committed Mar 26, 2024
1 parent a516a3d commit ba72eaf
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions example.config.yaml
Expand Up @@ -9,13 +9,13 @@ server:
enabled: true
port: 3476
tls:
enabled: true
enabled: false
cert: /etc/letsencrypt/live/yourdomain.com/fullchain.pem
key: /etc/letsencrypt/live/yourdomain.com/privkey.pem
grpc:
port: 3478
tls:
enabled: true
enabled: false
cert: /etc/letsencrypt/live/yourdomain.com/fullchain.pem
key: /etc/letsencrypt/live/yourdomain.com/privkey.pem

Expand All @@ -31,7 +31,7 @@ profiler:

# The authn section specifies the authentication method for the service.
authn:
enabled: true
enabled: false
method: preshared
preshared:
keys: []
Expand All @@ -41,14 +41,14 @@ authn:
tracer:
exporter: zipkin
endpoint: http://localhost:9411/api/v2/spans
enabled: true
enabled: false

# The meter section enables or disables metrics collection and sets the
# exporter and endpoint for the collected metrics.
meter:
exporter: otlp
endpoint: localhost:4318
enabled: true
enabled: false

# The service section sets various service-level settings, including whether
# or not to use a circuit breaker, and cache sizes for schema, permission,
Expand Down Expand Up @@ -80,6 +80,9 @@ database:
max_idle_connections: 1
max_connection_lifetime: 300s
max_connection_idle_time: 60s
max_data_per_write: 1_000
max_retries: 10
watch_buffer_size: 100
garbage_collection:
enabled: true
interval: 200h
Expand Down

0 comments on commit ba72eaf

Please sign in to comment.