component-basek8s.io/component-base/logs Index | Files | Directories

package logs

import "k8s.io/component-base/logs"

Package logs contains support for logging options, flags and setup. Commands must explicitly enable command line flags. They no longer get added automatically when importing this package.

Index

Variables

var NewOptions = logsapi.NewLoggingConfiguration

NewOptions is an alias for NewLoggingConfiguration.

Functions

func AddFlags

func AddFlags(fs *pflag.FlagSet, opts ...Option)

AddFlags registers this package's flags on arbitrary FlagSets. This includes the klog flags, with the original underscore as separator between. If commands want hyphens as separators, they can set k8s.io/component-base/cli/flag/WordSepNormalizeFunc as normalization function on the flag set before calling AddFlags.

May be called more than once.

func AddGoFlags

func AddGoFlags(fs *flag.FlagSet, opts ...Option)

AddGoFlags is a variant of AddFlags for traditional Go flag.FlagSet. Commands should use pflag whenever possible for the sake of consistency. Cases where this function is needed include tests (they have to set up flags in flag.CommandLine) and commands that for historic reasons use Go flag.Parse and cannot change to pflag because it would break their command line interface.

func FlushLogs

func FlushLogs()

FlushLogs flushes logs immediately. This should be called at the end of the main function via defer to ensure that all pending log messages are printed before exiting the program.

func GlogSetter

func GlogSetter(val string) (string, error)

GlogSetter modifies the verbosity threshold for the entire program. Some components have HTTP-based APIs for invoking this at runtime.

func InitLogs

func InitLogs()

InitLogs initializes logs the way we want for Kubernetes. It should be called after parsing flags. If called before that, it will use the default log settings.

InitLogs disables support for contextual logging in klog while that Kubernetes feature is not considered stable yet. Commands which want to support contextual logging can:

func NewLogger

func NewLogger(prefix string) *log.Logger

NewLogger creates a new log.Logger which sends logs to klog.Info.

Types

type KlogWriter

type KlogWriter struct{}

KlogWriter serves as a bridge between the standard log package and the glog package.

func (KlogWriter) Write

func (writer KlogWriter) Write(data []byte) (n int, err error)

Write implements the io.Writer interface.

type Option

type Option func(*addFlagsOptions)

func SkipLoggingConfigurationFlags

func SkipLoggingConfigurationFlags() Option

SkipLoggingConfigurationFlags must be used as option for AddFlags when the program also uses a LoggingConfiguration struct for configuring logging. Then only flags not covered by that get added.

type Options

type Options = logsapi.LoggingConfiguration

Options is an alias for LoggingConfiguration to comply with component-base conventions.

Source Files

logs.go

Directories

PathSynopsis
logs/api
logs/api/v1The LoggingAlphaOptions and LoggingBetaOptions feature gates control whether these unstable features can get enabled.
logs/datapolPackage datapol contains functions to determine if objects contain sensitive data to e.g.
logs/examplePackage example shows how a library uses contextual logging.
logs/example/cmd
logs/example/k8s2slog
logs/example/slog2k8sslog2k8s demonstrates how an application using log/slog for logging can include Kubernetes packages.
logs/example/stdlib
logs/example/test
logs/internal
logs/json
logs/json/register
logs/klogflags
logs/kube-log-runner
logs/logreduction
logs/testinitPackage testinit adds logging flags to a Ginkgo or Go test program during initialization, something that the logs package itself no longer does.
Version
v0.33.0 (latest)
Published
Apr 23, 2025
Platform
linux/amd64
Imports
10 packages
Last checked
5 hours ago

Tools for package owners.