2014-03-20 05:50:26 -06:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2019-06-26 10:12:38 -06:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2014-03-20 05:50:26 -06:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
2014-03-22 05:42:24 -06:00
|
|
|
"fmt"
|
2019-06-26 10:12:38 -06:00
|
|
|
"net/url"
|
2019-03-19 16:40:13 -06:00
|
|
|
"os"
|
2014-03-22 05:42:24 -06:00
|
|
|
"runtime"
|
2014-03-21 01:27:59 -06:00
|
|
|
"strings"
|
2014-03-22 05:42:24 -06:00
|
|
|
"time"
|
2014-03-21 01:27:59 -06:00
|
|
|
|
2014-07-25 22:24:27 -06:00
|
|
|
"github.com/Unknwon/com"
|
2015-10-15 19:28:12 -06:00
|
|
|
"gopkg.in/macaron.v1"
|
2014-03-21 01:27:59 -06:00
|
|
|
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/cron"
|
2019-05-14 19:57:00 -06:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2019-06-26 10:12:38 -06:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/modules/process"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2014-03-20 05:50:26 -06:00
|
|
|
)
|
|
|
|
|
2014-06-22 11:14:03 -06:00
|
|
|
const (
|
2016-11-20 20:21:24 -07:00
|
|
|
tplDashboard base.TplName = "admin/dashboard"
|
|
|
|
tplConfig base.TplName = "admin/config"
|
|
|
|
tplMonitor base.TplName = "admin/monitor"
|
2014-06-22 11:14:03 -06:00
|
|
|
)
|
|
|
|
|
2014-07-07 02:15:08 -06:00
|
|
|
var (
|
|
|
|
startTime = time.Now()
|
|
|
|
)
|
2014-03-22 07:21:57 -06:00
|
|
|
|
2014-03-22 05:42:24 -06:00
|
|
|
var sysStatus struct {
|
2014-03-22 07:21:57 -06:00
|
|
|
Uptime string
|
2014-03-22 05:42:24 -06:00
|
|
|
NumGoroutine int
|
|
|
|
|
|
|
|
// General statistics.
|
|
|
|
MemAllocated string // bytes allocated and still in use
|
|
|
|
MemTotal string // bytes allocated (even if freed)
|
|
|
|
MemSys string // bytes obtained from system (sum of XxxSys below)
|
|
|
|
Lookups uint64 // number of pointer lookups
|
|
|
|
MemMallocs uint64 // number of mallocs
|
|
|
|
MemFrees uint64 // number of frees
|
|
|
|
|
|
|
|
// Main allocation heap statistics.
|
|
|
|
HeapAlloc string // bytes allocated and still in use
|
|
|
|
HeapSys string // bytes obtained from system
|
|
|
|
HeapIdle string // bytes in idle spans
|
|
|
|
HeapInuse string // bytes in non-idle span
|
|
|
|
HeapReleased string // bytes released to the OS
|
|
|
|
HeapObjects uint64 // total number of allocated objects
|
|
|
|
|
|
|
|
// Low-level fixed-size structure allocator statistics.
|
|
|
|
// Inuse is bytes used now.
|
|
|
|
// Sys is bytes obtained from system.
|
|
|
|
StackInuse string // bootstrap stacks
|
|
|
|
StackSys string
|
|
|
|
MSpanInuse string // mspan structures
|
|
|
|
MSpanSys string
|
|
|
|
MCacheInuse string // mcache structures
|
|
|
|
MCacheSys string
|
|
|
|
BuckHashSys string // profiling bucket hash table
|
|
|
|
GCSys string // GC metadata
|
|
|
|
OtherSys string // other system allocations
|
|
|
|
|
|
|
|
// Garbage collector statistics.
|
|
|
|
NextGC string // next run in HeapAlloc time (bytes)
|
|
|
|
LastGC string // last run in absolute time (ns)
|
|
|
|
PauseTotalNs string
|
|
|
|
PauseNs string // circular buffer of recent GC pause times, most recent at [(NumGC+255)%256]
|
|
|
|
NumGC uint32
|
|
|
|
}
|
|
|
|
|
|
|
|
func updateSystemStatus() {
|
2017-06-27 23:43:28 -06:00
|
|
|
sysStatus.Uptime = base.TimeSincePro(startTime, "en")
|
2014-03-22 07:21:57 -06:00
|
|
|
|
2014-03-22 05:42:24 -06:00
|
|
|
m := new(runtime.MemStats)
|
|
|
|
runtime.ReadMemStats(m)
|
|
|
|
sysStatus.NumGoroutine = runtime.NumGoroutine()
|
|
|
|
|
|
|
|
sysStatus.MemAllocated = base.FileSize(int64(m.Alloc))
|
|
|
|
sysStatus.MemTotal = base.FileSize(int64(m.TotalAlloc))
|
|
|
|
sysStatus.MemSys = base.FileSize(int64(m.Sys))
|
|
|
|
sysStatus.Lookups = m.Lookups
|
|
|
|
sysStatus.MemMallocs = m.Mallocs
|
|
|
|
sysStatus.MemFrees = m.Frees
|
|
|
|
|
|
|
|
sysStatus.HeapAlloc = base.FileSize(int64(m.HeapAlloc))
|
|
|
|
sysStatus.HeapSys = base.FileSize(int64(m.HeapSys))
|
|
|
|
sysStatus.HeapIdle = base.FileSize(int64(m.HeapIdle))
|
|
|
|
sysStatus.HeapInuse = base.FileSize(int64(m.HeapInuse))
|
|
|
|
sysStatus.HeapReleased = base.FileSize(int64(m.HeapReleased))
|
|
|
|
sysStatus.HeapObjects = m.HeapObjects
|
|
|
|
|
|
|
|
sysStatus.StackInuse = base.FileSize(int64(m.StackInuse))
|
|
|
|
sysStatus.StackSys = base.FileSize(int64(m.StackSys))
|
|
|
|
sysStatus.MSpanInuse = base.FileSize(int64(m.MSpanInuse))
|
|
|
|
sysStatus.MSpanSys = base.FileSize(int64(m.MSpanSys))
|
|
|
|
sysStatus.MCacheInuse = base.FileSize(int64(m.MCacheInuse))
|
|
|
|
sysStatus.MCacheSys = base.FileSize(int64(m.MCacheSys))
|
|
|
|
sysStatus.BuckHashSys = base.FileSize(int64(m.BuckHashSys))
|
|
|
|
sysStatus.GCSys = base.FileSize(int64(m.GCSys))
|
|
|
|
sysStatus.OtherSys = base.FileSize(int64(m.OtherSys))
|
|
|
|
|
|
|
|
sysStatus.NextGC = base.FileSize(int64(m.NextGC))
|
|
|
|
sysStatus.LastGC = fmt.Sprintf("%.1fs", float64(time.Now().UnixNano()-int64(m.LastGC))/1000/1000/1000)
|
2014-03-22 07:21:57 -06:00
|
|
|
sysStatus.PauseTotalNs = fmt.Sprintf("%.1fs", float64(m.PauseTotalNs)/1000/1000/1000)
|
|
|
|
sysStatus.PauseNs = fmt.Sprintf("%.3fs", float64(m.PauseNs[(m.NumGC+255)%256])/1000/1000/1000)
|
2014-03-22 05:42:24 -06:00
|
|
|
sysStatus.NumGC = m.NumGC
|
|
|
|
}
|
|
|
|
|
2016-11-20 20:21:24 -07:00
|
|
|
// Operation Operation types.
|
|
|
|
type Operation int
|
2014-06-20 22:51:41 -06:00
|
|
|
|
2014-05-06 11:47:47 -06:00
|
|
|
const (
|
2016-11-20 20:21:24 -07:00
|
|
|
cleanInactivateUser Operation = iota + 1
|
|
|
|
cleanRepoArchives
|
|
|
|
cleanMissingRepos
|
|
|
|
gitGCRepos
|
|
|
|
syncSSHAuthorizedKey
|
|
|
|
syncRepositoryUpdateHook
|
|
|
|
reinitMissingRepository
|
2017-05-10 07:10:18 -06:00
|
|
|
syncExternalUsers
|
2018-03-02 02:09:43 -07:00
|
|
|
gitFsck
|
2019-06-02 00:40:12 -06:00
|
|
|
deleteGeneratedRepositoryAvatars
|
2014-05-06 11:47:47 -06:00
|
|
|
)
|
|
|
|
|
2016-11-20 20:21:24 -07:00
|
|
|
// Dashboard show admin panel dashboard
|
2016-03-11 09:56:52 -07:00
|
|
|
func Dashboard(ctx *context.Context) {
|
2014-08-28 08:29:00 -06:00
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.dashboard")
|
|
|
|
ctx.Data["PageIsAdmin"] = true
|
|
|
|
ctx.Data["PageIsAdminDashboard"] = true
|
2014-05-06 11:47:47 -06:00
|
|
|
|
|
|
|
// Run operation.
|
2014-07-25 22:24:27 -06:00
|
|
|
op, _ := com.StrTo(ctx.Query("op")).Int()
|
2014-05-06 11:47:47 -06:00
|
|
|
if op > 0 {
|
|
|
|
var err error
|
|
|
|
var success string
|
|
|
|
|
2016-11-20 20:21:24 -07:00
|
|
|
switch Operation(op) {
|
|
|
|
case cleanInactivateUser:
|
2014-11-18 17:05:33 -07:00
|
|
|
success = ctx.Tr("admin.dashboard.delete_inactivate_accounts_success")
|
2014-06-20 22:51:41 -06:00
|
|
|
err = models.DeleteInactivateUsers()
|
2016-11-20 20:21:24 -07:00
|
|
|
case cleanRepoArchives:
|
2014-11-18 17:05:33 -07:00
|
|
|
success = ctx.Tr("admin.dashboard.delete_repo_archives_success")
|
|
|
|
err = models.DeleteRepositoryArchives()
|
2016-11-20 20:21:24 -07:00
|
|
|
case cleanMissingRepos:
|
2015-11-18 13:37:48 -07:00
|
|
|
success = ctx.Tr("admin.dashboard.delete_missing_repos_success")
|
2017-09-03 02:20:24 -06:00
|
|
|
err = models.DeleteMissingRepositories(ctx.User)
|
2016-11-20 20:21:24 -07:00
|
|
|
case gitGCRepos:
|
2014-11-30 00:26:29 -07:00
|
|
|
success = ctx.Tr("admin.dashboard.git_gc_repos_success")
|
|
|
|
err = models.GitGcRepos()
|
2016-11-20 20:21:24 -07:00
|
|
|
case syncSSHAuthorizedKey:
|
2014-12-31 11:07:51 -07:00
|
|
|
success = ctx.Tr("admin.dashboard.resync_all_sshkeys_success")
|
|
|
|
err = models.RewriteAllPublicKeys()
|
2016-11-20 20:21:24 -07:00
|
|
|
case syncRepositoryUpdateHook:
|
2017-02-22 20:40:44 -07:00
|
|
|
success = ctx.Tr("admin.dashboard.resync_all_hooks_success")
|
|
|
|
err = models.SyncRepositoryHooks()
|
2016-11-20 20:21:24 -07:00
|
|
|
case reinitMissingRepository:
|
2016-02-04 10:51:00 -07:00
|
|
|
success = ctx.Tr("admin.dashboard.reinit_missing_repos_success")
|
|
|
|
err = models.ReinitMissingRepositories()
|
2017-05-10 07:10:18 -06:00
|
|
|
case syncExternalUsers:
|
|
|
|
success = ctx.Tr("admin.dashboard.sync_external_users_started")
|
|
|
|
go models.SyncExternalUsers()
|
2018-03-02 02:09:43 -07:00
|
|
|
case gitFsck:
|
|
|
|
success = ctx.Tr("admin.dashboard.git_fsck_started")
|
|
|
|
go models.GitFsck()
|
2019-06-02 00:40:12 -06:00
|
|
|
case deleteGeneratedRepositoryAvatars:
|
|
|
|
success = ctx.Tr("admin.dashboard.delete_generated_repository_avatars_success")
|
|
|
|
err = models.RemoveRandomAvatars()
|
2014-05-06 11:47:47 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
ctx.Flash.Error(err.Error())
|
|
|
|
} else {
|
|
|
|
ctx.Flash.Success(success)
|
|
|
|
}
|
2016-11-27 03:14:25 -07:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/admin")
|
2014-05-06 11:47:47 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-03-20 14:04:56 -06:00
|
|
|
ctx.Data["Stats"] = models.GetStatistic()
|
2014-11-18 17:05:33 -07:00
|
|
|
// FIXME: update periodically
|
2014-03-22 05:42:24 -06:00
|
|
|
updateSystemStatus()
|
|
|
|
ctx.Data["SysStatus"] = sysStatus
|
2016-11-20 20:21:24 -07:00
|
|
|
ctx.HTML(200, tplDashboard)
|
2014-03-20 05:50:26 -06:00
|
|
|
}
|
|
|
|
|
2016-11-20 20:21:24 -07:00
|
|
|
// SendTestMail send test mail to confirm mail service is OK
|
2016-03-11 09:56:52 -07:00
|
|
|
func SendTestMail(ctx *context.Context) {
|
2016-02-24 21:59:17 -07:00
|
|
|
email := ctx.Query("email")
|
|
|
|
// Send a test email to the user's email address and redirect back to Config
|
2016-07-15 10:36:39 -06:00
|
|
|
if err := models.SendTestMail(email); err != nil {
|
2016-02-24 21:59:17 -07:00
|
|
|
ctx.Flash.Error(ctx.Tr("admin.config.test_mail_failed", email, err))
|
|
|
|
} else {
|
|
|
|
ctx.Flash.Info(ctx.Tr("admin.config.test_mail_sent", email))
|
|
|
|
}
|
2016-02-18 15:13:12 -07:00
|
|
|
|
2016-11-27 03:14:25 -07:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/admin/config")
|
2016-02-18 15:13:12 -07:00
|
|
|
}
|
|
|
|
|
2019-06-26 10:12:38 -06:00
|
|
|
func shadownPasswordKV(cfgItem, splitter string) string {
|
|
|
|
fields := strings.Split(cfgItem, splitter)
|
|
|
|
for i := 0; i < len(fields); i++ {
|
|
|
|
if strings.HasPrefix(fields[i], "password=") {
|
|
|
|
fields[i] = "password=******"
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return strings.Join(fields, splitter)
|
|
|
|
}
|
|
|
|
|
|
|
|
func shadownURL(provider, cfgItem string) string {
|
|
|
|
u, err := url.Parse(cfgItem)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("shodowPassword %v failed: %v", provider, err)
|
|
|
|
return cfgItem
|
|
|
|
}
|
|
|
|
if u.User != nil {
|
|
|
|
atIdx := strings.Index(cfgItem, "@")
|
|
|
|
if atIdx > 0 {
|
|
|
|
colonIdx := strings.LastIndex(cfgItem[:atIdx], ":")
|
|
|
|
if colonIdx > 0 {
|
|
|
|
return cfgItem[:colonIdx+1] + "******" + cfgItem[atIdx:]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return cfgItem
|
|
|
|
}
|
|
|
|
|
|
|
|
func shadowPassword(provider, cfgItem string) string {
|
|
|
|
switch provider {
|
|
|
|
case "redis":
|
|
|
|
return shadownPasswordKV(cfgItem, ",")
|
|
|
|
case "mysql":
|
|
|
|
//root:@tcp(localhost:3306)/macaron?charset=utf8
|
|
|
|
atIdx := strings.Index(cfgItem, "@")
|
|
|
|
if atIdx > 0 {
|
|
|
|
colonIdx := strings.Index(cfgItem[:atIdx], ":")
|
|
|
|
if colonIdx > 0 {
|
|
|
|
return cfgItem[:colonIdx+1] + "******" + cfgItem[atIdx:]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return cfgItem
|
|
|
|
case "postgres":
|
|
|
|
// user=jiahuachen dbname=macaron port=5432 sslmode=disable
|
|
|
|
if !strings.HasPrefix(cfgItem, "postgres://") {
|
|
|
|
return shadownPasswordKV(cfgItem, " ")
|
|
|
|
}
|
|
|
|
|
|
|
|
// postgres://pqgotest:password@localhost/pqgotest?sslmode=verify-full
|
|
|
|
// Notice: use shadwonURL
|
|
|
|
}
|
|
|
|
|
|
|
|
// "couchbase"
|
|
|
|
return shadownURL(provider, cfgItem)
|
|
|
|
}
|
|
|
|
|
2016-11-20 20:21:24 -07:00
|
|
|
// Config show admin config page
|
2016-03-11 09:56:52 -07:00
|
|
|
func Config(ctx *context.Context) {
|
2015-09-12 07:21:09 -06:00
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.config")
|
2014-08-30 06:49:51 -06:00
|
|
|
ctx.Data["PageIsAdmin"] = true
|
|
|
|
ctx.Data["PageIsAdminConfig"] = true
|
2014-03-21 01:27:59 -06:00
|
|
|
|
2017-06-22 07:21:56 -06:00
|
|
|
ctx.Data["CustomConf"] = setting.CustomConf
|
2016-11-27 03:14:25 -07:00
|
|
|
ctx.Data["AppUrl"] = setting.AppURL
|
2014-05-25 18:11:25 -06:00
|
|
|
ctx.Data["Domain"] = setting.Domain
|
|
|
|
ctx.Data["OfflineMode"] = setting.OfflineMode
|
|
|
|
ctx.Data["DisableRouterLog"] = setting.DisableRouterLog
|
|
|
|
ctx.Data["RunUser"] = setting.RunUser
|
2014-07-25 22:24:27 -06:00
|
|
|
ctx.Data["RunMode"] = strings.Title(macaron.Env)
|
2019-05-14 19:57:00 -06:00
|
|
|
ctx.Data["GitVersion"], _ = git.BinVersion()
|
2014-05-25 18:11:25 -06:00
|
|
|
ctx.Data["RepoRootPath"] = setting.RepoRootPath
|
2019-03-19 16:40:13 -06:00
|
|
|
ctx.Data["CustomRootPath"] = setting.CustomPath
|
2014-05-27 23:53:06 -06:00
|
|
|
ctx.Data["StaticRootPath"] = setting.StaticRootPath
|
|
|
|
ctx.Data["LogRootPath"] = setting.LogRootPath
|
2014-05-25 18:11:25 -06:00
|
|
|
ctx.Data["ScriptType"] = setting.ScriptType
|
2014-06-24 11:55:47 -06:00
|
|
|
ctx.Data["ReverseProxyAuthUser"] = setting.ReverseProxyAuthUser
|
2018-12-18 10:05:48 -07:00
|
|
|
ctx.Data["ReverseProxyAuthEmail"] = setting.ReverseProxyAuthEmail
|
2014-03-21 01:27:59 -06:00
|
|
|
|
2016-02-27 18:48:39 -07:00
|
|
|
ctx.Data["SSH"] = setting.SSH
|
2019-06-16 12:24:49 -06:00
|
|
|
ctx.Data["LFS"] = setting.LFS
|
2016-02-27 18:48:39 -07:00
|
|
|
|
2014-05-25 18:11:25 -06:00
|
|
|
ctx.Data["Service"] = setting.Service
|
2014-03-21 01:27:59 -06:00
|
|
|
ctx.Data["DbCfg"] = models.DbCfg
|
2015-02-10 19:06:59 -07:00
|
|
|
ctx.Data["Webhook"] = setting.Webhook
|
2014-06-08 02:45:34 -06:00
|
|
|
|
2014-03-21 02:13:32 -06:00
|
|
|
ctx.Data["MailerEnabled"] = false
|
2014-05-25 18:11:25 -06:00
|
|
|
if setting.MailService != nil {
|
2014-03-21 02:13:32 -06:00
|
|
|
ctx.Data["MailerEnabled"] = true
|
2014-05-25 18:11:25 -06:00
|
|
|
ctx.Data["Mailer"] = setting.MailService
|
2014-03-21 02:13:32 -06:00
|
|
|
}
|
2014-03-21 01:27:59 -06:00
|
|
|
|
2017-10-25 19:37:33 -06:00
|
|
|
ctx.Data["CacheAdapter"] = setting.CacheService.Adapter
|
|
|
|
ctx.Data["CacheInterval"] = setting.CacheService.Interval
|
2019-06-26 10:12:38 -06:00
|
|
|
|
|
|
|
ctx.Data["CacheConn"] = shadowPassword(setting.CacheService.Adapter, setting.CacheService.Conn)
|
2019-05-06 08:35:11 -06:00
|
|
|
ctx.Data["CacheItemTTL"] = setting.CacheService.TTL
|
2014-03-21 08:09:57 -06:00
|
|
|
|
2019-06-26 10:12:38 -06:00
|
|
|
sessionCfg := setting.SessionConfig
|
|
|
|
sessionCfg.ProviderConfig = shadowPassword(sessionCfg.Provider, sessionCfg.ProviderConfig)
|
|
|
|
|
|
|
|
ctx.Data["SessionConfig"] = sessionCfg
|
2014-03-22 07:21:57 -06:00
|
|
|
|
2014-05-25 18:11:25 -06:00
|
|
|
ctx.Data["DisableGravatar"] = setting.DisableGravatar
|
2016-08-07 11:27:38 -06:00
|
|
|
ctx.Data["EnableFederatedAvatar"] = setting.EnableFederatedAvatar
|
2014-03-22 04:42:19 -06:00
|
|
|
|
2016-08-10 12:01:42 -06:00
|
|
|
ctx.Data["Git"] = setting.Git
|
|
|
|
|
2019-03-19 16:40:13 -06:00
|
|
|
type envVar struct {
|
|
|
|
Name, Value string
|
|
|
|
}
|
|
|
|
|
|
|
|
envVars := map[string]*envVar{}
|
|
|
|
if len(os.Getenv("GITEA_WORK_DIR")) > 0 {
|
|
|
|
envVars["GITEA_WORK_DIR"] = &envVar{"GITEA_WORK_DIR", os.Getenv("GITEA_WORK_DIR")}
|
|
|
|
}
|
|
|
|
if len(os.Getenv("GITEA_CUSTOM")) > 0 {
|
|
|
|
envVars["GITEA_CUSTOM"] = &envVar{"GITEA_CUSTOM", os.Getenv("GITEA_CUSTOM")}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["EnvVars"] = envVars
|
2019-04-02 01:48:31 -06:00
|
|
|
ctx.Data["Loggers"] = setting.LogDescriptions
|
|
|
|
ctx.Data["RedirectMacaronLog"] = setting.RedirectMacaronLog
|
|
|
|
ctx.Data["EnableAccessLog"] = setting.EnableAccessLog
|
|
|
|
ctx.Data["AccessLogTemplate"] = setting.AccessLogTemplate
|
|
|
|
ctx.Data["DisableRouterLog"] = setting.DisableRouterLog
|
|
|
|
ctx.Data["EnableXORMLog"] = setting.EnableXORMLog
|
|
|
|
ctx.Data["LogSQL"] = setting.LogSQL
|
2014-03-21 10:13:13 -06:00
|
|
|
|
2016-11-20 20:21:24 -07:00
|
|
|
ctx.HTML(200, tplConfig)
|
2014-03-20 23:48:10 -06:00
|
|
|
}
|
2014-06-13 11:01:52 -06:00
|
|
|
|
2016-11-20 20:21:24 -07:00
|
|
|
// Monitor show admin monitor page
|
2016-03-11 09:56:52 -07:00
|
|
|
func Monitor(ctx *context.Context) {
|
2014-08-30 06:49:51 -06:00
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.monitor")
|
|
|
|
ctx.Data["PageIsAdmin"] = true
|
|
|
|
ctx.Data["PageIsAdminMonitor"] = true
|
2017-01-16 22:58:58 -07:00
|
|
|
ctx.Data["Processes"] = process.GetManager().Processes
|
2015-08-17 12:19:29 -06:00
|
|
|
ctx.Data["Entries"] = cron.ListTasks()
|
2016-11-20 20:21:24 -07:00
|
|
|
ctx.HTML(200, tplMonitor)
|
2014-06-13 11:01:52 -06:00
|
|
|
}
|