diff --git a/internal/api/api.go b/internal/api/api.go index dfb65117..878bd6aa 100644 --- a/internal/api/api.go +++ b/internal/api/api.go @@ -238,6 +238,7 @@ var mu sync.Mutex func apiHandler(w http.ResponseWriter, r *http.Request) { mu.Lock() app.Info["host"] = r.Host + app.Info["pid"] = os.Getpid() mu.Unlock() ResponseJSON(w, app.Info) diff --git a/website/api/openapi.yaml b/website/api/openapi.yaml index b6110572..16611230 100644 --- a/website/api/openapi.yaml +++ b/website/api/openapi.yaml @@ -123,6 +123,7 @@ paths: properties: config_path: { type: string, example: "/config/go2rtc.yaml" } host: { type: string, example: "192.168.1.123:1984" } + pid: { type: integer, example: 12345 } rtsp: type: object properties: diff --git a/www/index.html b/www/index.html index 69126e6f..34ad2c9d 100644 --- a/www/index.html +++ b/www/index.html @@ -147,7 +147,12 @@ const url = new URL('api', location.href); fetch(url, {cache: 'no-cache'}).then(r => r.json()).then(data => { const info = document.querySelector('.info'); - info.innerText = `version: ${data.version} / config: ${data.config_path}`; + const parts = [ + `version: ${data.version}`, + `pid: ${data.pid}`, + `config: ${data.config_path}`, + ]; + info.innerText = parts.join(' / '); }); reload();