});
}
private void writeRepresentations(OperationStats operationStats, String operation, int cluster, int iteration, String node,
int threads, long period, boolean hasPercentiles, boolean hasHistograms, boolean gray, boolean suspect) {
DefaultOutcome defaultOutcome = operationStats == null ? null : operationStats.getRepresentation(DefaultOutcome.class);
Throughput throughput = operationStats == null ? null : operationStats.getRepresentation(Throughput.class, threads, period);
MeanAndDev meanAndDev = operationStats == null ? null : operationStats.getRepresentation(MeanAndDev.class);
Histogram histogram = operationStats == null ? null : operationStats.getRepresentation(Histogram.class, configuration.histogramBuckets, configuration.histogramPercentile);
String rowStyle = suspect ? "background-color: #FFBBBB; " : (gray ? "background-color: #F0F0F0; " : "");