Merge pull request #2197 from kozec/instance-id

Feature request: startTime in system/status
This commit is contained in:
Jakob Borg 2015-08-27 08:23:01 +02:00
commit bda0bb6f13
1 changed files with 1 additions and 0 deletions

View File

@ -642,6 +642,7 @@ func (s *apiSvc) getSystemStatus(w http.ResponseWriter, r *http.Request) {
res["cpuPercent"] = cpusum / float64(len(cpuUsagePercent)) / float64(runtime.NumCPU())
res["pathSeparator"] = string(filepath.Separator)
res["uptime"] = int(time.Since(startTime).Seconds())
res["startTime"] = startTime
w.Header().Set("Content-Type", "application/json; charset=utf-8")
json.NewEncoder(w).Encode(res)