in harness/src/main/java/org/apache/geode/perftest/yardstick/analysis/YardstickPercentileSensorParser.java [58:73]
public void parseResults(File resultDir) throws IOException {
File sensorData = new File(resultDir, sensorOutputFile);
try (FileReader fileReader = new FileReader(sensorData);
BufferedReader dataStream = new BufferedReader(fileReader)) {
String nextLine;
while ((nextLine = dataStream.readLine()) != null) {
if (nextLine.startsWith("--") ||
nextLine.startsWith("@@") ||
nextLine.startsWith("**")) {
continue;
}
buckets.add(new SensorBucket(nextLine));
}
}
}