19 lines
428 B
Go
19 lines
428 B
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package admin
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"gitea.dev/modules/tailmsg"
|
|
"gitea.dev/services/context"
|
|
)
|
|
|
|
func PerfTrace(ctx *context.Context) {
|
|
monitorTraceCommon(ctx)
|
|
ctx.Data["PageIsAdminMonitorPerfTrace"] = true
|
|
ctx.Data["PerfTraceRecords"] = tailmsg.GetManager().GetTraceRecorder().GetRecords()
|
|
ctx.HTML(http.StatusOK, tplPerfTrace)
|
|
}
|