forked from lavina/lavina
1
0
Fork 0

small fix

This commit is contained in:
Nikita Vilunov 2024-04-26 12:14:43 +02:00
parent f78156c6a4
commit 0e0ffc31d2
1 changed files with 10 additions and 1 deletions

View File

@ -26,7 +26,7 @@ db_path = "db.sqlite"
[tracing]
# otlp grpc endpoint
endpoint = "http://localhost:4317"
endpoint = "http://jaeger:4317"
service_name = "lavina"
```
@ -46,6 +46,15 @@ services:
- '5222:5222' # xmpp
- '6667:6667' # irc non-tls
- '127.0.0.1:1380:8080' # management http (private)
# if you want to observe traces
jaeger:
image: "jaegertracing/all-in-one:1.56"
ports:
- "16686:16686" # web ui
- "4317:4317" # grpc ingest endpoint
environment:
- COLLECTOR_OTLP_ENABLED=true
- SPAN_STORAGE_TYPE=memory
```
## With Cargo