traefik/pkg/types/logs.go

131 lines
6.5 KiB
Go
Raw Normal View History

2018-03-14 13:12:04 +00:00
package types
import "github.com/traefik/paerser/types"
2018-03-14 13:12:04 +00:00
const (
2020-05-11 10:06:07 +00:00
// AccessLogKeep is the keep string value.
2018-03-14 13:12:04 +00:00
AccessLogKeep = "keep"
2020-05-11 10:06:07 +00:00
// AccessLogDrop is the drop string value.
2018-03-14 13:12:04 +00:00
AccessLogDrop = "drop"
2020-05-11 10:06:07 +00:00
// AccessLogRedact is the redact string value.
2018-03-14 13:12:04 +00:00
AccessLogRedact = "redact"
)
const (
// CommonFormat is the common logging format (CLF).
CommonFormat string = "common"
// JSONFormat is the JSON logging format.
JSONFormat string = "json"
)
2018-03-14 13:12:04 +00:00
// TraefikLog holds the configuration settings for the traefik logger.
type TraefikLog struct {
2022-11-21 17:36:05 +00:00
Level string `description:"Log level set to traefik logs." json:"level,omitempty" toml:"level,omitempty" yaml:"level,omitempty" export:"true"`
Format string `description:"Traefik log format: json | common" json:"format,omitempty" toml:"format,omitempty" yaml:"format,omitempty" export:"true"`
NoColor bool `description:"When using the 'common' format, disables the colorized output." json:"noColor,omitempty" toml:"noColor,omitempty" yaml:"noColor,omitempty" export:"true"`
FilePath string `description:"Traefik log file path. Stdout is used when omitted or empty." json:"filePath,omitempty" toml:"filePath,omitempty" yaml:"filePath,omitempty"`
MaxSize int `description:"Maximum size in megabytes of the log file before it gets rotated." json:"maxSize,omitempty" toml:"maxSize,omitempty" yaml:"maxSize,omitempty" export:"true"`
MaxAge int `description:"Maximum number of days to retain old log files based on the timestamp encoded in their filename." json:"maxAge,omitempty" toml:"maxAge,omitempty" yaml:"maxAge,omitempty" export:"true"`
MaxBackups int `description:"Maximum number of old log files to retain." json:"maxBackups,omitempty" toml:"maxBackups,omitempty" yaml:"maxBackups,omitempty" export:"true"`
Compress bool `description:"Determines if the rotated log files should be compressed using gzip." json:"compress,omitempty" toml:"compress,omitempty" yaml:"compress,omitempty" export:"true"`
2018-03-14 13:12:04 +00:00
}
// SetDefaults sets the default values.
func (l *TraefikLog) SetDefaults() {
l.Format = CommonFormat
l.Level = "ERROR"
}
2018-03-14 13:12:04 +00:00
// AccessLog holds the configuration settings for the access logger (middlewares/accesslog).
type AccessLog struct {
2020-10-30 11:44:05 +00:00
FilePath string `description:"Access log file path. Stdout is used when omitted or empty." json:"filePath,omitempty" toml:"filePath,omitempty" yaml:"filePath,omitempty"`
2019-07-01 09:30:05 +00:00
Format string `description:"Access log format: json | common" json:"format,omitempty" toml:"format,omitempty" yaml:"format,omitempty" export:"true"`
Filters *AccessLogFilters `description:"Access log filters, used to keep only specific access logs." json:"filters,omitempty" toml:"filters,omitempty" yaml:"filters,omitempty" export:"true"`
Fields *AccessLogFields `description:"AccessLogFields." json:"fields,omitempty" toml:"fields,omitempty" yaml:"fields,omitempty" export:"true"`
BufferingSize int64 `description:"Number of access log lines to process in a buffered way." json:"bufferingSize,omitempty" toml:"bufferingSize,omitempty" yaml:"bufferingSize,omitempty" export:"true"`
AddInternals bool `description:"Enables access log for internal services (ping, dashboard, etc...)." json:"addInternals,omitempty" toml:"addInternals,omitempty" yaml:"addInternals,omitempty" export:"true"`
}
// SetDefaults sets the default values.
func (l *AccessLog) SetDefaults() {
l.Format = CommonFormat
l.FilePath = ""
l.Filters = &AccessLogFilters{}
l.Fields = &AccessLogFields{}
l.Fields.SetDefaults()
2018-03-14 13:12:04 +00:00
}
2020-05-11 10:06:07 +00:00
// AccessLogFilters holds filters configuration.
2018-03-14 13:12:04 +00:00
type AccessLogFilters struct {
StatusCodes []string `description:"Keep access logs with status codes in the specified range." json:"statusCodes,omitempty" toml:"statusCodes,omitempty" yaml:"statusCodes,omitempty" export:"true"`
RetryAttempts bool `description:"Keep access logs when at least one retry happened." json:"retryAttempts,omitempty" toml:"retryAttempts,omitempty" yaml:"retryAttempts,omitempty" export:"true"`
MinDuration types.Duration `description:"Keep access logs when request took longer than the specified duration." json:"minDuration,omitempty" toml:"minDuration,omitempty" yaml:"minDuration,omitempty" export:"true"`
2018-03-14 13:12:04 +00:00
}
2020-05-11 10:06:07 +00:00
// FieldHeaders holds configuration for access log headers.
2018-03-14 13:12:04 +00:00
type FieldHeaders struct {
2019-07-01 09:30:05 +00:00
DefaultMode string `description:"Default mode for fields: keep | drop | redact" json:"defaultMode,omitempty" toml:"defaultMode,omitempty" yaml:"defaultMode,omitempty" export:"true"`
Names map[string]string `description:"Override mode for headers" json:"names,omitempty" toml:"names,omitempty" yaml:"names,omitempty" export:"true"`
2018-03-14 13:12:04 +00:00
}
2020-05-11 10:06:07 +00:00
// AccessLogFields holds configuration for access log fields.
type AccessLogFields struct {
2019-07-01 09:30:05 +00:00
DefaultMode string `description:"Default mode for fields: keep | drop" json:"defaultMode,omitempty" toml:"defaultMode,omitempty" yaml:"defaultMode,omitempty" export:"true"`
2019-09-26 09:00:06 +00:00
Names map[string]string `description:"Override mode for fields" json:"names,omitempty" toml:"names,omitempty" yaml:"names,omitempty" export:"true"`
2019-07-01 09:30:05 +00:00
Headers *FieldHeaders `description:"Headers to keep, drop or redact" json:"headers,omitempty" toml:"headers,omitempty" yaml:"headers,omitempty" export:"true"`
2018-03-14 13:12:04 +00:00
}
// SetDefaults sets the default values.
func (f *AccessLogFields) SetDefaults() {
f.DefaultMode = AccessLogKeep
f.Headers = &FieldHeaders{
DefaultMode: AccessLogDrop,
2018-03-14 13:12:04 +00:00
}
2018-04-23 08:54:03 +00:00
}
2020-05-11 10:06:07 +00:00
// Keep check if the field need to be kept or dropped.
2018-03-14 13:12:04 +00:00
func (f *AccessLogFields) Keep(field string) bool {
defaultKeep := true
if f != nil {
defaultKeep = checkFieldValue(f.DefaultMode, defaultKeep)
if v, ok := f.Names[field]; ok {
return checkFieldValue(v, defaultKeep)
}
}
return defaultKeep
}
2020-05-11 10:06:07 +00:00
// KeepHeader checks if the headers need to be kept, dropped or redacted and returns the status.
2018-03-14 13:12:04 +00:00
func (f *AccessLogFields) KeepHeader(header string) string {
defaultValue := AccessLogKeep
if f != nil && f.Headers != nil {
defaultValue = checkFieldHeaderValue(f.Headers.DefaultMode, defaultValue)
if v, ok := f.Headers.Names[header]; ok {
return checkFieldHeaderValue(v, defaultValue)
}
}
return defaultValue
}
2018-04-23 08:54:03 +00:00
func checkFieldValue(value string, defaultKeep bool) bool {
switch value {
case AccessLogKeep:
return true
case AccessLogDrop:
return false
default:
return defaultKeep
}
}
2020-07-07 12:42:03 +00:00
func checkFieldHeaderValue(value, defaultValue string) string {
2018-03-14 13:12:04 +00:00
if value == AccessLogKeep || value == AccessLogDrop || value == AccessLogRedact {
return value
}
return defaultValue
}