Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for totalRPS (0.36 sec)

  1. tests/integration/telemetry/api/istioctl_metrics_test.go

    		return errors.New("unexpected output (incorrect workload)")
    	}
    	totalRPS, fErr := strconv.ParseFloat(fields[1], 32)
    	if fErr != nil {
    		t.Logf("Expected column 2 to show totalRPS, got %#v", fields)
    		return fErr
    	}
    	if totalRPS <= 0.001 {
    		t.Logf("Expected column 2 to show totalRPS more than 0.001, got %#v", fields)
    		return errors.New("unexpected output (incorrect RPS)")
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. istioctl/pkg/metrics/metrics.go

    	return cmd
    }
    
    type workloadMetrics struct {
    	workload                           string
    	totalRPS, errorRPS                 float64
    	p50Latency, p90Latency, p99Latency time.Duration
    }
    
    func run(c *cobra.Command, ctx cli.Context, args []string) error {
    	log.Debugf("metrics command invoked for workload(s): %v", args)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top