Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
static JMetricName com.griddynamics.jagger.user.test.configurations.limits.auxiliary.JMetricName.PERF_LATENCY_PERCENTILE ( Double  percentile)
static

Metric name for some particular percentile.

Parameters
percentilethe value of percentile. It may varies from 0 to 100.0 percent.

Definition at line 67 of file JMetricName.java.

References com.griddynamics.jagger.user.test.configurations.limits.auxiliary.JMetricName.PERF_AVG_LATENCY.

Referenced by JLoadScenarioProvider.exampleJaggerLoadScenario().

67  {
68  if (percentile < 0) {
69  throw new IllegalArgumentException("Percentile may varies from 0 to 100.0");
70  }
71  PERF_AVG_LATENCY.value = percentile;
72  return JMetricName.PERF_AVG_LATENCY;
73  }

Here is the caller graph for this function: