gitea源码

perftrace.go 448B

12345678910111213141516171819
  1. // Copyright 2025 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package admin
  4. import (
  5. "net/http"
  6. "code.gitea.io/gitea/modules/tailmsg"
  7. "code.gitea.io/gitea/services/context"
  8. )
  9. func PerfTrace(ctx *context.Context) {
  10. monitorTraceCommon(ctx)
  11. ctx.Data["PageIsAdminMonitorPerfTrace"] = true
  12. ctx.Data["PerfTraceRecords"] = tailmsg.GetManager().GetTraceRecorder().GetRecords()
  13. ctx.HTML(http.StatusOK, tplPerfTrace)
  14. }