diff --git a/routes/common.go b/routes/common.go index 44d64787..bfd6030e 100644 --- a/routes/common.go +++ b/routes/common.go @@ -135,11 +135,13 @@ func renderTemplate3(tmplName, hookName string, w http.ResponseWriter, r *http.R } FootHeaders(w, h) + if h.Zone != "error" { since := time.Since(h.StartedAt) //if h.CurrentUser.IsAdmin { h.Elapsed1 = since.String() //} - co.PerfCounter.Push(since) + co.PerfCounter.Push(since/*, false*/) + } if c.RunPreRenderHook("pre_render_"+hookName, w, r, &h.CurrentUser, pi) { return nil } @@ -147,7 +149,6 @@ func renderTemplate3(tmplName, hookName string, w http.ResponseWriter, r *http.R if err != nil { return err } - //co.PerfCounter.Push(since) return nil }