Skip to content

Commit faec4ba

Browse files
authored
Remove system-level statistics from README (#1157)
* Remove system-level statistics from README According to https://community.jitsi.org/t/proposed-videobridge-stats-removal/20431 the system-level statistics cpu_usage, total_memory and used_memory have been removed. * Remove system-level statistics from README According to https://community.jitsi.org/t/proposed-videobridge-stats-removal/20431 the system-level statistics cpu_usage, total_memory and used_memory have been removed.
1 parent a22e502 commit faec4ba

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

doc/rest-colibri.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,6 @@ The respective response could look like:
124124
200 OK with a JSON object which represents the statistics report.
125125
<pre>
126126
{
127-
"cpu_usage":"0.03015",
128-
"used_memory":3732,
129127
"rtp_loss":"0",
130128
"bit_rate_download":"0",
131129
"audiochannels":0,
@@ -134,7 +132,6 @@ The respective response could look like:
134132
"participants":0,
135133
"current_timestamp":"2014-08-14 23:26:14.782",
136134
"threads":17,
137-
"total_memory":4051,
138135
"videochannels":0
139136
}</pre>
140137
(Make sure <a href="using_statistics.md#configuration">statistics are enabled</a>.)

doc/statistics.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ Introduction
33
**Jitsi Videobridge implements reports for the following statistics (and more):**
44

55
* Number of threads used by the JVM.
6-
* Current CPU and memory usage.
76
* Current bitrate, packet rate, and packet loss rate.
87
* Current number of audio and video channels, and conferences.
98
* Current estimated number of video streams.
@@ -22,9 +21,6 @@ Implementation
2221
* **current_timestamp** - The value is the date and time when the statistics are
2322
generated (in UTC).
2423
* **threads** - The number of Java threads that the video bridge is using.
25-
* **used_memory** - Total used memory on the machine (i.e. what 'free' would return) in megabytes (10^6 B).
26-
* **total_memory** - The total memory of the machine in megabytes.
27-
* **cpu_usage** - CPU usage for the machine. The value is between 0 and 1 and is the fraction of the last interval that the CPU spent in either user, nice, system or iowait state (what would appear in the 'cpu' line in 'top').
2824
* **bit_rate_download / bit_rate_upload** - the total incoming and outgoing (respectively) bitrate for the video bridge in kilobits per second.
2925
* **packet_rate_download / packet_rate_upload** - the total incoming and outgoing (respectively) packet rate for the video bridge in packets per second.
3026
* **loss_rate_download** - The fraction of lost incoming RTP packets. This is based on RTP sequence numbers and is relatively accurate.
@@ -57,7 +53,6 @@ The statistics are available through the `/colibri/stats` endpoint on the [priva
5753
"bit_rate_upload": 0,
5854
"conference_sizes": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ],
5955
"conferences": 0,
60-
"cpu_usage": 0.2358490566037736,
6156
"current_timestamp": "2019-03-14 11:02:15.184",
6257
"graceful_shutdown": false,
6358
"jitter_aggregate": 0,
@@ -90,15 +85,13 @@ The statistics are available through the `/colibri/stats` endpoint on the [priva
9085
"total_loss_controlled_participant_seconds": 847,
9186
"total_loss_degraded_participant_seconds": 1,
9287
"total_loss_limited_participant_seconds": 0,
93-
"total_memory": 8257,
9488
"total_packets_dropped_octo": 0,
9589
"total_packets_received": 266644,
9690
"total_packets_received_octo": 0,
9791
"total_packets_sent": 266556,
9892
"total_packets_sent_octo": 0,
9993
"total_partially_failed_conferences": 0,
10094
"total_participants": 2,
101-
"used_memory": 4404,
10295
"videochannels": 0,
10396
"videostreams": 0
10497
}
@@ -109,12 +102,9 @@ The statistics can also be published periodically via XMPP (which allows jicofo
109102
<stats xmlns=' http://jitsi.org/protocol/colibri'>
110103
<stat value='2014-07-30 10:13:11.595' name='current_timestamp'/>
111104
<stat value='229' name='threads'/>
112-
<stat value='702' name='used_memory'/>
113-
<stat value='0.1506' name='cpu_usage'/>
114105
<stat value='689.0096' name='bit_rate_download'/>
115106
<stat value='0.00299' name='rtp_loss'/>
116107
<stat value='4' name='audiochannels'/>
117-
<stat value='1042' name='total_memory'/>
118108
<stat value='700.9024' name='bit_rate_upload'/>
119109
<stat value='2' name='conferences'/>
120110
<stat value='4' name='videochannels'/>

0 commit comments

Comments
 (0)