2021-08-12 09:48:47 +00:00
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/aler9/gortsplib"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMetrics(t *testing.T) {
|
|
|
|
serverCertFpath, err := writeTempFile(serverCert)
|
|
|
|
require.NoError(t, err)
|
|
|
|
defer os.Remove(serverCertFpath)
|
|
|
|
|
|
|
|
serverKeyFpath, err := writeTempFile(serverKey)
|
|
|
|
require.NoError(t, err)
|
|
|
|
defer os.Remove(serverKeyFpath)
|
|
|
|
|
|
|
|
p, ok := newInstance("metrics: yes\n" +
|
|
|
|
"encryption: optional\n" +
|
|
|
|
"serverCert: " + serverCertFpath + "\n" +
|
2021-11-06 11:51:38 +00:00
|
|
|
"serverKey: " + serverKeyFpath + "\n" +
|
|
|
|
"paths:\n" +
|
|
|
|
" all:\n")
|
2021-08-12 09:48:47 +00:00
|
|
|
require.Equal(t, true, ok)
|
|
|
|
defer p.close()
|
|
|
|
|
2021-09-09 21:05:54 +00:00
|
|
|
track, err := gortsplib.NewTrackH264(96,
|
2022-01-30 16:36:42 +00:00
|
|
|
[]byte{0x01, 0x02, 0x03, 0x04}, []byte{0x01, 0x02, 0x03, 0x04}, nil)
|
2021-08-12 09:48:47 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
2021-11-12 21:29:56 +00:00
|
|
|
source := gortsplib.Client{}
|
|
|
|
|
|
|
|
err = source.StartPublishing("rtsp://localhost:8554/rtsp_path",
|
2021-08-12 09:48:47 +00:00
|
|
|
gortsplib.Tracks{track})
|
|
|
|
require.NoError(t, err)
|
|
|
|
defer source.Close()
|
|
|
|
|
|
|
|
cnt1, err := newContainer("ffmpeg", "source", []string{
|
|
|
|
"-re",
|
|
|
|
"-stream_loop", "-1",
|
|
|
|
"-i", "emptyvideo.mkv",
|
|
|
|
"-c", "copy",
|
|
|
|
"-f", "flv",
|
2021-10-11 22:00:56 +00:00
|
|
|
"rtmp://localhost:1935/rtmp_path",
|
2021-08-12 09:48:47 +00:00
|
|
|
})
|
|
|
|
require.NoError(t, err)
|
|
|
|
defer cnt1.close()
|
|
|
|
|
2021-11-05 16:29:13 +00:00
|
|
|
func() {
|
|
|
|
res, err := http.Get("http://localhost:8888/rtsp_path/index.m3u8")
|
|
|
|
require.NoError(t, err)
|
|
|
|
defer res.Body.Close()
|
|
|
|
require.Equal(t, 200, res.StatusCode)
|
|
|
|
}()
|
|
|
|
|
2021-08-12 09:48:47 +00:00
|
|
|
req, err := http.NewRequest(http.MethodGet, "http://localhost:9998/metrics", nil)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
res, err := http.DefaultClient.Do(req)
|
|
|
|
require.NoError(t, err)
|
|
|
|
defer res.Body.Close()
|
|
|
|
require.Equal(t, http.StatusOK, res.StatusCode)
|
|
|
|
|
|
|
|
bo, err := ioutil.ReadAll(res.Body)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
vals := make(map[string]string)
|
|
|
|
lines := strings.Split(string(bo), "\n")
|
|
|
|
for _, l := range lines[:len(lines)-1] {
|
|
|
|
fields := strings.Split(l, " ")
|
|
|
|
vals[fields[0]] = fields[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
require.Equal(t, map[string]string{
|
2021-11-05 16:29:13 +00:00
|
|
|
"hls_muxers{name=\"rtsp_path\"}": "1",
|
2021-10-11 22:00:56 +00:00
|
|
|
"paths{name=\"rtsp_path\",state=\"ready\"}": "1",
|
|
|
|
"paths{name=\"rtmp_path\",state=\"ready\"}": "1",
|
|
|
|
"rtmp_conns{state=\"idle\"}": "0",
|
|
|
|
"rtmp_conns{state=\"publish\"}": "1",
|
|
|
|
"rtmp_conns{state=\"read\"}": "0",
|
|
|
|
"rtsp_sessions{state=\"idle\"}": "0",
|
|
|
|
"rtsp_sessions{state=\"publish\"}": "1",
|
|
|
|
"rtsp_sessions{state=\"read\"}": "0",
|
|
|
|
"rtsps_sessions{state=\"idle\"}": "0",
|
|
|
|
"rtsps_sessions{state=\"publish\"}": "0",
|
|
|
|
"rtsps_sessions{state=\"read\"}": "0",
|
2021-08-12 09:48:47 +00:00
|
|
|
}, vals)
|
|
|
|
}
|