SYMBOL INDEX (27 symbols across 5 files) FILE: logger.go type Logger (line 20) | type Logger struct method PrintColorizedLog (line 32) | func (l *Logger) PrintColorizedLog(c *color.Color, line string) { method PrintHeader (line 40) | func (l *Logger) PrintHeader(context, namespace, labels string) { method PrintPlainLog (line 49) | func (l *Logger) PrintPlainLog(line string) { method PrintPodDetected (line 57) | func (l *Logger) PrintPodDetected(pod, container string) { method PrintPodFinished (line 62) | func (l *Logger) PrintPodFinished(pod, container string) { method PrintPodDeleted (line 67) | func (l *Logger) PrintPodDeleted(pod, container string) { method PrintPodLog (line 72) | func (l *Logger) PrintPodLog(pod, container, line string, timestamps b... function NewLogger (line 25) | func NewLogger() *Logger { FILE: main.go constant debugAddress (line 22) | debugAddress = ":6060" constant logSecondsOffset (line 23) | logSecondsOffset = 10 function main (line 30) | func main() { FILE: tail.go type Tail (line 14) | type Tail struct method Start (line 40) | func (t *Tail) Start(ctx context.Context, clientset *kubernetes.Client... method Finish (line 75) | func (t *Tail) Finish() { method Delete (line 81) | func (t *Tail) Delete() { function NewTail (line 26) | func NewTail(namespace, pod, container string, logger *Logger, sinceSeco... type TailMap (line 86) | type TailMap struct method Get (line 98) | func (m *TailMap) Get(k string) (*Tail, bool) { method Set (line 107) | func (m *TailMap) Set(k string, v *Tail) { method Delete (line 114) | func (m *TailMap) Delete(k string) { function NewTailMap (line 92) | func NewTailMap() *TailMap { FILE: version.go function printVersion (line 13) | func printVersion() { FILE: watch.go type Target (line 10) | type Target struct method GetID (line 26) | func (t *Target) GetID() string { function NewTarget (line 17) | func NewTarget(namespace, pod, container string) *Target { function Watch (line 31) | func Watch(ctx context.Context, watcher watch.Interface) (chan *Target, ...