Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for WM (0.17 sec)

  1. istioctl/pkg/metrics/metrics.go

    }
    
    func printMetrics(writer io.Writer, wm workloadMetrics) {
    	w := tabwriter.NewWriter(writer, 13, 1, 2, ' ', tabwriter.AlignRight)
    	_, _ = fmt.Fprintf(w, "%40s\t", wm.workload)
    	_, _ = fmt.Fprintf(w, "%.3f\t", wm.totalRPS)
    	_, _ = fmt.Fprintf(w, "%.3f\t", wm.errorRPS)
    	_, _ = fmt.Fprintf(w, "%s\t", wm.p50Latency)
    	_, _ = fmt.Fprintf(w, "%s\t", wm.p90Latency)
    	_, _ = fmt.Fprintf(w, "%s\t\n", wm.p99Latency)
    	_ = w.Flush()
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 8.4K bytes
    - Viewed (0)
Back to top