podlogs

package
v1.18.20 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 16, 2021 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Overview

Package podlogs enables live capturing of all events and log messages for some or all pods in a namespace as they get generated. This helps debugging both a running test (what is currently going on?) and the output of a CI run (events appear in chronological order and output that normally isn't available like the command stdout messages are available).

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CopyAllLogs

func CopyAllLogs(ctx context.Context, cs clientset.Interface, ns string, to LogOutput) error

CopyAllLogs follows the logs of all containers in all pods, including those that get created in the future, and writes each log line as configured in the output options. It does that until the context is done or until an error occurs.

Beware that there is currently no way to force log collection before removing pods, which means that there is a known race between "stop pod" and "collecting log entries". The alternative would be a blocking function with collects logs from all currently running pods, but that then would have the disadvantage that already deleted pods aren't covered.

func WatchPods

func WatchPods(ctx context.Context, cs clientset.Interface, ns string, to io.Writer) error

WatchPods prints pod status events for a certain namespace or all namespaces when namespace name is empty.

Types

type LogOutput

type LogOutput struct {
	// If not nil, errors will be logged here.
	StatusWriter io.Writer

	// If not nil, all output goes to this writer with "<pod>/<container>:" as prefix.
	LogWriter io.Writer

	// Base directory for one log file per container.
	// The full path of each log file will be <log path prefix><pod>-<container>.log.
	LogPathPrefix string
}

LogOutput determines where output from CopyAllLogs goes.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL