mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Merge remote-tracking branch 'winlin/feature/perf_stat' into feature/rtc
This commit is contained in:
commit
40c95b04ca
9 changed files with 335 additions and 7 deletions
|
@ -987,7 +987,10 @@ srs_error_t SrsServer::http_handle()
|
|||
return srs_error_wrap(err, "handle raw");
|
||||
}
|
||||
if ((err = http_api_mux->handle("/api/v1/clusters", new SrsGoApiClusters())) != srs_success) {
|
||||
return srs_error_wrap(err, "handle raw");
|
||||
return srs_error_wrap(err, "handle clusters");
|
||||
}
|
||||
if ((err = http_api_mux->handle("/api/v1/perf", new SrsGoApiPerf())) != srs_success) {
|
||||
return srs_error_wrap(err, "handle perf");
|
||||
}
|
||||
#ifdef SRS_AUTO_GB28181
|
||||
if ((err = http_api_mux->handle("/api/v1/gb28181", new SrsGoApiGb28181())) != srs_success) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue