mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-04 08:17:24 -05:00
4647660776
## ⚠️ Breaking The `log.<mode>.<logger>` style config has been dropped. If you used it, please check the new config manual & app.example.ini to make your instance output logs as expected. Although many legacy options still work, it's encouraged to upgrade to the new options. The SMTP logger is deleted because SMTP is not suitable to collect logs. If you have manually configured Gitea log options, please confirm the logger system works as expected after upgrading. ## Description Close #12082 and maybe more log-related issues, resolve some related FIXMEs in old code (which seems unfixable before) Just like rewriting queue #24505 : make code maintainable, clear legacy bugs, and add the ability to support more writers (eg: JSON, structured log) There is a new document (with examples): `logging-config.en-us.md` This PR is safer than the queue rewriting, because it's just for logging, it won't break other logic. ## The old problems The logging system is quite old and difficult to maintain: * Unclear concepts: Logger, NamedLogger, MultiChannelledLogger, SubLogger, EventLogger, WriterLogger etc * Some code is diffuclt to konw whether it is right: `log.DelNamedLogger("console")` vs `log.DelNamedLogger(log.DEFAULT)` vs `log.DelLogger("console")` * The old system heavily depends on ini config system, it's difficult to create new logger for different purpose, and it's very fragile. * The "color" trick is difficult to use and read, many colors are unnecessary, and in the future structured log could help * It's difficult to add other log formats, eg: JSON format * The log outputer doesn't have full control of its goroutine, it's difficult to make outputer have advanced behaviors * The logs could be lost in some cases: eg: no Fatal error when using CLI. * Config options are passed by JSON, which is quite fragile. * INI package makes the KEY in `[log]` section visible in `[log.sub1]` and `[log.sub1.subA]`, this behavior is quite fragile and would cause more unclear problems, and there is no strong requirement to support `log.<mode>.<logger>` syntax. ## The new design See `logger.go` for documents. ## Screenshot <details> ![image](https://github.com/go-gitea/gitea/assets/2114189/4462d713-ba39-41f5-bb08-de912e67e1ff) ![image](https://github.com/go-gitea/gitea/assets/2114189/b188035e-f691-428b-8b2d-ff7b2199b2f9) ![image](https://github.com/go-gitea/gitea/assets/2114189/132e9745-1c3b-4e00-9e0d-15eaea495dee) </details> ## TODO * [x] add some new tests * [x] fix some tests * [x] test some sub-commands (manually ....) --------- Co-authored-by: Jason Song <i@wolfogre.com> Co-authored-by: delvh <dev.lh@web.de> Co-authored-by: Giteabot <teabot@gitea.io>
183 lines
5.5 KiB
Go
183 lines
5.5 KiB
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package private
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"code.gitea.io/gitea/models/db"
|
|
"code.gitea.io/gitea/modules/context"
|
|
"code.gitea.io/gitea/modules/graceful"
|
|
"code.gitea.io/gitea/modules/graceful/releasereopen"
|
|
"code.gitea.io/gitea/modules/log"
|
|
"code.gitea.io/gitea/modules/private"
|
|
"code.gitea.io/gitea/modules/queue"
|
|
"code.gitea.io/gitea/modules/setting"
|
|
"code.gitea.io/gitea/modules/web"
|
|
)
|
|
|
|
// FlushQueues flushes all the Queues
|
|
func FlushQueues(ctx *context.PrivateContext) {
|
|
opts := web.GetForm(ctx).(*private.FlushOptions)
|
|
if opts.NonBlocking {
|
|
// Save the hammer ctx here - as a new one is created each time you call this.
|
|
baseCtx := graceful.GetManager().HammerContext()
|
|
go func() {
|
|
err := queue.GetManager().FlushAll(baseCtx, opts.Timeout)
|
|
if err != nil {
|
|
log.Error("Flushing request timed-out with error: %v", err)
|
|
}
|
|
}()
|
|
ctx.JSON(http.StatusAccepted, private.Response{
|
|
UserMsg: "Flushing",
|
|
})
|
|
return
|
|
}
|
|
err := queue.GetManager().FlushAll(ctx, opts.Timeout)
|
|
if err != nil {
|
|
ctx.JSON(http.StatusRequestTimeout, private.Response{
|
|
UserMsg: fmt.Sprintf("%v", err),
|
|
})
|
|
}
|
|
ctx.PlainText(http.StatusOK, "success")
|
|
}
|
|
|
|
// PauseLogging pauses logging
|
|
func PauseLogging(ctx *context.PrivateContext) {
|
|
log.GetManager().PauseAll()
|
|
ctx.PlainText(http.StatusOK, "success")
|
|
}
|
|
|
|
// ResumeLogging resumes logging
|
|
func ResumeLogging(ctx *context.PrivateContext) {
|
|
log.GetManager().ResumeAll()
|
|
ctx.PlainText(http.StatusOK, "success")
|
|
}
|
|
|
|
// ReleaseReopenLogging releases and reopens logging files
|
|
func ReleaseReopenLogging(ctx *context.PrivateContext) {
|
|
if err := releasereopen.GetManager().ReleaseReopen(); err != nil {
|
|
ctx.JSON(http.StatusInternalServerError, private.Response{
|
|
Err: fmt.Sprintf("Error during release and reopen: %v", err),
|
|
})
|
|
return
|
|
}
|
|
ctx.PlainText(http.StatusOK, "success")
|
|
}
|
|
|
|
// SetLogSQL re-sets database SQL logging
|
|
func SetLogSQL(ctx *context.PrivateContext) {
|
|
db.SetLogSQL(ctx, ctx.FormBool("on"))
|
|
ctx.PlainText(http.StatusOK, "success")
|
|
}
|
|
|
|
// RemoveLogger removes a logger
|
|
func RemoveLogger(ctx *context.PrivateContext) {
|
|
logger := ctx.Params("logger")
|
|
writer := ctx.Params("writer")
|
|
err := log.GetManager().GetLogger(logger).RemoveWriter(writer)
|
|
if err != nil {
|
|
ctx.JSON(http.StatusInternalServerError, private.Response{
|
|
Err: fmt.Sprintf("Failed to remove log writer: %s %s %v", logger, writer, err),
|
|
})
|
|
return
|
|
}
|
|
ctx.PlainText(http.StatusOK, fmt.Sprintf("Removed %s %s", logger, writer))
|
|
}
|
|
|
|
// AddLogger adds a logger
|
|
func AddLogger(ctx *context.PrivateContext) {
|
|
opts := web.GetForm(ctx).(*private.LoggerOptions)
|
|
|
|
if len(opts.Logger) == 0 {
|
|
opts.Logger = log.DEFAULT
|
|
}
|
|
|
|
writerMode := log.WriterMode{}
|
|
writerType := opts.Mode
|
|
|
|
var flags string
|
|
var ok bool
|
|
if flags, ok = opts.Config["flags"].(string); !ok {
|
|
switch opts.Logger {
|
|
case "access":
|
|
flags = ""
|
|
case "router":
|
|
flags = "date,time"
|
|
default:
|
|
flags = "stdflags"
|
|
}
|
|
}
|
|
writerMode.Flags = log.FlagsFromString(flags)
|
|
|
|
if writerMode.Colorize, ok = opts.Config["colorize"].(bool); !ok && opts.Mode == "console" {
|
|
if _, ok := opts.Config["stderr"]; ok {
|
|
writerMode.Colorize = log.CanColorStderr
|
|
} else {
|
|
writerMode.Colorize = log.CanColorStdout
|
|
}
|
|
}
|
|
|
|
writerMode.Level = setting.Log.Level
|
|
if level, ok := opts.Config["level"].(string); ok {
|
|
writerMode.Level = log.LevelFromString(level)
|
|
}
|
|
|
|
writerMode.StacktraceLevel = setting.Log.StacktraceLogLevel
|
|
if stacktraceLevel, ok := opts.Config["level"].(string); ok {
|
|
writerMode.StacktraceLevel = log.LevelFromString(stacktraceLevel)
|
|
}
|
|
|
|
writerMode.Prefix, _ = opts.Config["prefix"].(string)
|
|
writerMode.Expression, _ = opts.Config["expression"].(string)
|
|
|
|
switch writerType {
|
|
case "console":
|
|
writerOption := log.WriterConsoleOption{}
|
|
writerOption.Stderr, _ = opts.Config["stderr"].(bool)
|
|
writerMode.WriterOption = writerOption
|
|
case "file":
|
|
writerOption := log.WriterFileOption{}
|
|
fileName, _ := opts.Config["filename"].(string)
|
|
writerOption.FileName = setting.LogPrepareFilenameForWriter(fileName, opts.Writer+".log")
|
|
writerOption.LogRotate = opts.Config["rotate"].(bool)
|
|
maxSizeShift, _ := opts.Config["maxsize"].(int)
|
|
if maxSizeShift == 0 {
|
|
maxSizeShift = 28
|
|
}
|
|
writerOption.MaxSize = 1 << maxSizeShift
|
|
writerOption.DailyRotate, _ = opts.Config["daily"].(bool)
|
|
writerOption.MaxDays, _ = opts.Config["maxdays"].(int)
|
|
if writerOption.MaxDays == 0 {
|
|
writerOption.MaxDays = 7
|
|
}
|
|
writerOption.Compress, _ = opts.Config["compress"].(bool)
|
|
writerOption.CompressionLevel, _ = opts.Config["compressionLevel"].(int)
|
|
if writerOption.CompressionLevel == 0 {
|
|
writerOption.CompressionLevel = -1
|
|
}
|
|
writerMode.WriterOption = writerOption
|
|
case "conn":
|
|
writerOption := log.WriterConnOption{}
|
|
writerOption.ReconnectOnMsg, _ = opts.Config["reconnectOnMsg"].(bool)
|
|
writerOption.Reconnect, _ = opts.Config["reconnect"].(bool)
|
|
writerOption.Protocol, _ = opts.Config["net"].(string)
|
|
writerOption.Addr, _ = opts.Config["address"].(string)
|
|
writerMode.WriterOption = writerOption
|
|
default:
|
|
panic(fmt.Sprintf("invalid log writer mode: %s", writerType))
|
|
}
|
|
writer, err := log.NewEventWriter(opts.Writer, writerType, writerMode)
|
|
if err != nil {
|
|
log.Error("Failed to create new log writer: %v", err)
|
|
ctx.JSON(http.StatusInternalServerError, private.Response{
|
|
Err: fmt.Sprintf("Failed to create new log writer: %v", err),
|
|
})
|
|
return
|
|
}
|
|
log.GetManager().GetLogger(opts.Logger).AddWriters(writer)
|
|
ctx.PlainText(http.StatusOK, "success")
|
|
}
|