Versions in this module Expand all Collapse all v1 v1.0.0 Mar 25, 2026 Changes in this version + type Diagram struct + Events []Event + Title string + func NewDiagram(title string) *Diagram + func (d *Diagram) AddEvent(e Event) + func (d *Diagram) ToMermaid() string + func (d *Diagram) ToPlantUML() string + type Event struct + Dest string + Info string + Latency float64 + Protocol string + Source string + Timestamp float64 + type LatencyStats struct + Avg float64 + Count int + Max float64 + Min float64 + func ComputeLatency(events []Event) *LatencyStats