Skip to content
Snippets Groups Projects
Commit 626c943e authored by bigbes's avatar bigbes
Browse files

Fix for index_tabs.js (Load)

parent 051b807b
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@
title.html('Workload F');
image.renderChart('/ycsb/F_throughput.json');
break;
} case 'Load' : {
} case 'LOAD' : {
title.html('Insert Only');
image.renderChart('/ycsb/LOAD_throughput.json');
break;
......@@ -82,9 +82,9 @@
image.renderChart('/ycsb/F_READ_latency.json');
} else if (title == 'Workload F' && link.html() == 'Throughput') {
image.renderChart('/ycsb/F_throughput.json')
} else if (title == 'Workload LOAD' && link.html() == 'Latency') {
} else if (title == 'Insert Only' && link.html() == 'Latency') {
image.renderChart('/ycsb/LOAD_INSERT_latency.json');
} else if (title == 'Workload LOAD' && link.html() == 'Throughput') {
} else if (title == 'Insert Only' && link.html() == 'Throughput') {
image.renderChart('/ycsb/LOAD_throughput.json')
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment