add stress_level metric
This commit is contained in:
parent
ebc94995f1
commit
cc9dc1650f
2 changed files with 11 additions and 0 deletions
4
main.go
4
main.go
|
@ -31,6 +31,7 @@ type videoBridgeStats struct {
|
||||||
P2PConferences int `json:"p2p_conferences"`
|
P2PConferences int `json:"p2p_conferences"`
|
||||||
Participants int `json:"participants"`
|
Participants int `json:"participants"`
|
||||||
Videostreams int `json:"videostreams"`
|
Videostreams int `json:"videostreams"`
|
||||||
|
StressLevel float64 `json:"stress_level"`
|
||||||
TotalLossControlledParticipantSeconds int `json:"total_loss_controlled_participant_seconds"`
|
TotalLossControlledParticipantSeconds int `json:"total_loss_controlled_participant_seconds"`
|
||||||
TotalLossLimitedParticipantSeconds int `json:"total_loss_limited_participant_seconds"`
|
TotalLossLimitedParticipantSeconds int `json:"total_loss_limited_participant_seconds"`
|
||||||
TotalLossDegradedParticipantSeconds int `json:"total_loss_degraded_participant_seconds"`
|
TotalLossDegradedParticipantSeconds int `json:"total_loss_degraded_participant_seconds"`
|
||||||
|
@ -94,6 +95,9 @@ jitsi_participants {{.Participants}}
|
||||||
# HELP jitsi_videostreams An estimation of the number of current video streams forwarded by the bridge.
|
# HELP jitsi_videostreams An estimation of the number of current video streams forwarded by the bridge.
|
||||||
# TYPE jitsi_videostreams gauge
|
# TYPE jitsi_videostreams gauge
|
||||||
jitsi_videostreams {{.Videostreams}}
|
jitsi_videostreams {{.Videostreams}}
|
||||||
|
# HELP jitsi_stress_level Stress Level reported to Jicofo by the videobridge.
|
||||||
|
# TYPE jitsi_stress_level gauge
|
||||||
|
jitsi_stress_level {{.StressLevel}}
|
||||||
# HELP jitsi_total_loss_controlled_participant_seconds The total number of participant-seconds that are loss-controlled.
|
# HELP jitsi_total_loss_controlled_participant_seconds The total number of participant-seconds that are loss-controlled.
|
||||||
# TYPE jitsi_total_loss_controlled_participant_seconds counter
|
# TYPE jitsi_total_loss_controlled_participant_seconds counter
|
||||||
jitsi_total_loss_controlled_participant_seconds {{.TotalLossControlledParticipantSeconds}}
|
jitsi_total_loss_controlled_participant_seconds {{.TotalLossControlledParticipantSeconds}}
|
||||||
|
|
|
@ -71,6 +71,9 @@ jitsi_participants 4
|
||||||
# HELP jitsi_videostreams An estimation of the number of current video streams forwarded by the bridge.
|
# HELP jitsi_videostreams An estimation of the number of current video streams forwarded by the bridge.
|
||||||
# TYPE jitsi_videostreams gauge
|
# TYPE jitsi_videostreams gauge
|
||||||
jitsi_videostreams 0
|
jitsi_videostreams 0
|
||||||
|
# HELP jitsi_stress_level Stress Level reported to Jicofo by the videobridge.
|
||||||
|
# TYPE jitsi_stress_level gauge
|
||||||
|
jitsi_stress_level 0
|
||||||
# HELP jitsi_total_loss_controlled_participant_seconds The total number of participant-seconds that are loss-controlled.
|
# HELP jitsi_total_loss_controlled_participant_seconds The total number of participant-seconds that are loss-controlled.
|
||||||
# TYPE jitsi_total_loss_controlled_participant_seconds counter
|
# TYPE jitsi_total_loss_controlled_participant_seconds counter
|
||||||
jitsi_total_loss_controlled_participant_seconds 0
|
jitsi_total_loss_controlled_participant_seconds 0
|
||||||
|
@ -129,6 +132,7 @@ jitsi_total_colibri_web_socket_messages_sent 0
|
||||||
"relay_id": "10.0.0.5:4096",
|
"relay_id": "10.0.0.5:4096",
|
||||||
"rtp_loss": 0,
|
"rtp_loss": 0,
|
||||||
"rtt_aggregate": 0,
|
"rtt_aggregate": 0,
|
||||||
|
"stress_level": 0.6,
|
||||||
"threads": 59,
|
"threads": 59,
|
||||||
"total_bytes_received": 257628359,
|
"total_bytes_received": 257628359,
|
||||||
"total_bytes_received_octo": 0,
|
"total_bytes_received_octo": 0,
|
||||||
|
@ -206,6 +210,9 @@ jitsi_participants 0
|
||||||
# HELP jitsi_videostreams An estimation of the number of current video streams forwarded by the bridge.
|
# HELP jitsi_videostreams An estimation of the number of current video streams forwarded by the bridge.
|
||||||
# TYPE jitsi_videostreams gauge
|
# TYPE jitsi_videostreams gauge
|
||||||
jitsi_videostreams 0
|
jitsi_videostreams 0
|
||||||
|
# HELP jitsi_stress_level Stress Level reported to Jicofo by the videobridge.
|
||||||
|
# TYPE jitsi_stress_level gauge
|
||||||
|
jitsi_stress_level 0.6
|
||||||
# HELP jitsi_total_loss_controlled_participant_seconds The total number of participant-seconds that are loss-controlled.
|
# HELP jitsi_total_loss_controlled_participant_seconds The total number of participant-seconds that are loss-controlled.
|
||||||
# TYPE jitsi_total_loss_controlled_participant_seconds counter
|
# TYPE jitsi_total_loss_controlled_participant_seconds counter
|
||||||
jitsi_total_loss_controlled_participant_seconds 847
|
jitsi_total_loss_controlled_participant_seconds 847
|
||||||
|
|
Loading…
Reference in a new issue