Ready-to-use SRT / WebRTC / RTSP / RTMP / LL-HLS media server and media proxy that allows to read, publish, proxy, record and playback video and audio streams.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

60 lines
956 B

package pprof
import (
"context"
"net"
"net/http"
// start pprof
_ "net/http/pprof"
"github.com/aler9/rtsp-simple-server/internal/logger"
)
const (
address = ":9999"
)
// Parent is implemented by program.
type Parent interface {
Log(logger.Level, string, ...interface{})
}
// Pprof is a performance metrics exporter.
type Pprof struct {
listener net.Listener
server *http.Server
}
// New allocates a Pprof.
func New(parent Parent) (*Pprof, error) {
listener, err := net.Listen("tcp", address)
if err != nil {
return nil, err
}
pp := &Pprof{
listener: listener,
}
pp.server = &http.Server{
Handler: http.DefaultServeMux,
}
parent.Log(logger.Info, "[pprof] opened on "+address)
go pp.run()
return pp, nil
}
// Close closes a Pprof.
func (pp *Pprof) Close() {
pp.server.Shutdown(context.Background())
}
func (pp *Pprof) run() {
err := pp.server.Serve(pp.listener)
if err != http.ErrServerClosed {
panic(err)
}
}