Use videobridge endpoint instead of jibri
This commit is contained in:
parent
69eddf9758
commit
2f438c9bfe
2 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ Example Playbook:
|
|||
### Docker
|
||||
|
||||
```
|
||||
docker run -p 9888:9888 systemli/prometheus-jitsi-meet-exporter:latest -videobridge-url http://jitsi:8888/stats
|
||||
docker run -p 9888:9888 systemli/prometheus-jitsi-meet-exporter:latest -videobridge-url http://jitsi:8080/colibri/stats
|
||||
```
|
||||
|
||||
## Dashboard
|
||||
|
|
2
main.go
2
main.go
|
@ -10,7 +10,7 @@ import (
|
|||
|
||||
var (
|
||||
addr = flag.String("web.listen-address", ":9888", "Address on which to expose metrics and web interface.")
|
||||
videoBridgeURL = flag.String("videobridge-url", "http://localhost:8888/stats", "Jitsi Videobridge /stats URL to scrape")
|
||||
videoBridgeURL = flag.String("videobridge-url", "http://localhost:8080/colibri/stats", "Jitsi Videobridge /stats URL to scrape")
|
||||
)
|
||||
|
||||
type videoBridgeStats struct {
|
||||
|
|
Loading…
Reference in a new issue