No description
Find a file
2020-04-15 13:57:58 +02:00
.github/workflows add sha512sums to releases 2020-03-21 22:30:41 +01:00
.gitignore initial commit 2020-03-21 20:53:50 +01:00
.golangci.yml initial commit 2020-03-21 20:53:50 +01:00
Dockerfile initial commit 2020-03-21 20:53:50 +01:00
go.mod remove dependencies from go.mod 2020-03-21 21:15:20 +01:00
LICENSE initial commit 2020-03-21 20:53:50 +01:00
main.go initial commit 2020-03-21 20:53:50 +01:00
main_test.go add basic test, add metrics section in readme 2020-04-15 13:57:58 +02:00
Makefile add sha512sums to releases 2020-03-21 22:30:41 +01:00
README.md add basic test, add metrics section in readme 2020-04-15 13:57:58 +02:00

Jitsi Meet Metrics Exporter

Integration Quality Docker Automated build MicroBadger Size

Prometheus Exporter for Jitsi Meet written in Go. Based on Jitsi Meet Exporter from Autistici

Usage

go get github.com/systemli/prometheus-jitsi-meet-exporter
go install github.com/systemli/prometheus-jitsi-meet-exporter
$GOPATH/bin/prometheus-jitsi-meet-exporter

Docker

docker run -p 9888:9888 systemli/prometheus-jitsi-meet-exporter:latest -videobridge-url http://jitsi:8888/stats 

Metrics

# HELP jitsi_total_participants Participants counter
# TYPE jitsi_total_participants counter
jitsi_total_participants 18
# HELP jitsi_total_conferences_created Number of conferences created
# TYPE jitsi_total_conferences_created counter
jitsi_total_conferences_created 14
# HELP jitsi_largest_conference Participants in the largest conference
# TYPE jitsi_largest_conference gauge
jitsi_largest_conference 3
# HELP jitsi_conferences Current number of active conferences
# TYPE jitsi_conferences gauge
jitsi_conferences 2
# HELP jitsi_participants Current number of active participants
# TYPE jitsi_participants gauge
jitsi_participants 4

License

GPLv3