mirror of
https://github.com/famedly/ansible-collection-matrix
synced 2024-12-04 00:29:12 +00:00
feat(livekit): enable metrics in livekit configuration
This commit is contained in:
parent
79031506fa
commit
56637965d4
2 changed files with 4 additions and 0 deletions
|
@ -98,6 +98,7 @@ livekit_turns_port: 5349
|
|||
livekit_turn_port: 3478
|
||||
livekit_redis_port: 6379
|
||||
livekit_jwt_service_external_port: 8888
|
||||
livekit_metrics_port: 6789
|
||||
```
|
||||
|
||||
The defaults are also used set the log level and manage log sampling (these can
|
||||
|
|
|
@ -7,6 +7,7 @@ livekit_domain: "{{ famedly_instance_domain }}"
|
|||
livekit_turnserver_domain: ~
|
||||
livekit_log_level: "info"
|
||||
livekit_log_sample: true
|
||||
livekit_metrics_port: 6789
|
||||
livekit_redis_enabled: false
|
||||
livekit_ws_port: 7880
|
||||
livekit_rtc_port: 7881
|
||||
|
@ -72,6 +73,8 @@ livekit_config_basic:
|
|||
external_tls: true
|
||||
keys:
|
||||
secret: "{{ livekit_secret_key }}"
|
||||
prometheus:
|
||||
port: "{{ livekit_metrics_port }}"
|
||||
livekit_config_redis:
|
||||
redis:
|
||||
address: "127.0.0.1:{{ livekit_redis_port }}"
|
||||
|
|
Loading…
Reference in a new issue