vtrace

package
v0.1.16 Latest Latest
Warning

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

Go to latest
Published: Feb 11, 2021 License: BSD-3-Clause Imports: 11 Imported by: 0

Documentation

Overview

Package vtrace implements the Trace and Span interfaces in v.io/v23/vtrace. We also provide internal utilities for migrating trace information across RPC calls.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func GetVTraceLevel

func GetVTraceLevel(ctx *context.T) int

SetVTraceLevel returns the vtrace level This value is used to determine which log messages are sent as part of the vtrace output.

func Init

func Init(ctx *context.T, opts flags.VtraceFlags) (*context.T, error)

Init initializes vtrace and attaches some state to the context. This should be called by the runtimes initialization function.

Types

type Logger added in v0.1.10

type Logger struct{}

func (*Logger) FlushLog added in v0.1.10

func (v *Logger) FlushLog()

func (*Logger) InfoDepth added in v0.1.10

func (*Logger) InfoDepth(ctx *context.T, depth int, args ...interface{})

func (*Logger) InfoStack added in v0.1.10

func (*Logger) InfoStack(ctx *context.T, all bool)

func (*Logger) VDepth added in v0.1.10

func (*Logger) VDepth(ctx *context.T, depth int, level int) bool

func (*Logger) VIDepth added in v0.1.10

func (v *Logger) VIDepth(ctx *context.T, depth int, level int) context.Logger

type Store

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

Store implements a store for traces. The idea is to keep all the information we have about some subset of traces that pass through the server. For now we just implement an LRU cache, so the least recently started/finished/annotated traces expire after some maximum trace count is reached. TODO(mattr): LRU is the wrong policy in the long term, we should try to keep some diverse set of traces and allow users to specifically tell us to capture a specific trace. LRU will work OK for many testing scenarios and low volume applications.

func NewStore

func NewStore(opts flags.VtraceFlags) (*Store, error)

NewStore creates a new store according to the passed in opts.

func (*Store) ForceCollect

func (s *Store) ForceCollect(id uniqueid.Id, level int)

func (*Store) Merge

func (s *Store) Merge(t vtrace.Response)

Merge merges a vtrace.Response into the current store.

func (*Store) TraceRecord

func (s *Store) TraceRecord(id uniqueid.Id) *vtrace.TraceRecord

TraceRecord returns a TraceRecord for a given Id. Returns nil if the given id is not present.

func (*Store) TraceRecords

func (s *Store) TraceRecords() []vtrace.TraceRecord

TraceRecords returns TraceRecords for all traces saved in the store.

Jump to

Keyboard shortcuts

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