printer

package
v0.14.2 Latest Latest
Warning

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

Go to latest
Published: May 12, 2023 License: Apache-2.0 Imports: 16 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Broadcast added in v0.12.0

type Broadcast struct {
	// contains filtered or unexported fields
}

Broadcast is a printer that broadcasts events to multiple printers

func NewBroadcast added in v0.12.0

func NewBroadcast(printers []EventPrinter) *Broadcast

NewBroadcast creates a new Broadcast printer

func (*Broadcast) Close added in v0.14.1

func (b *Broadcast) Close()

Close closes Broadcast printer

func (*Broadcast) Print added in v0.12.0

func (b *Broadcast) Print(event trace.Event)

Print broadcasts the event to all printers

type Config

type Config struct {
	Kind          string
	OutPath       string
	OutFile       io.WriteCloser
	ContainerMode ContainerMode
	RelativeTS    bool
}

type ContainerMode

type ContainerMode int
const (
	ContainerModeDisabled ContainerMode = iota
	ContainerModeEnabled
	ContainerModeEnriched
)

type EventPrinter

type EventPrinter interface {
	// Init serves as the initializer method for every event Printer type
	Init() error
	// Preamble prints something before event printing begins (one time)
	Preamble()
	// Epilogue prints something after event printing ends (one time)
	Epilogue(stats metrics.Stats)
	// Print prints a single event
	Print(event trace.Event)
	// dispose of resources
	Close()
}

func New

func New(config Config) (EventPrinter, error)

Jump to

Keyboard shortcuts

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