IReadOnlyJITDataModel model = parent.getJITDataModel();
final Map<String, IHistoVisitable> attrMap = new HashMap<>();
attrMap.put("JIT Compilation Times", new AttributeNameHistoWalker(model, true, ATTR_COMPILE_MILLIS, 10));
attrMap.put("Bytes per Compiled Method", new AttributeNameHistoWalker(model, true, ATTR_BYTES, 10));
attrMap.put("Native Bytes per Compiled Method", new AttributeNameHistoWalker(model, true, ATTR_NMSIZE, 10));
attrMap.put("Inlined Method Sizes", new InlineSizeHistoVisitable(model, 1));
VBox vbox = new VBox();
ObservableList<String> options = FXCollections.observableArrayList(attrMap.keySet());