Github user pmouawad commented on the issue:
https://github.com/apache/jmeter/pull/256
Hello Antonio,
Thanks for PR.
My notes:
- I think you may have problems with your git config for end of line as
your PR modifies more files than needed .
Regarding code, it looks ok to me.
I would just modify in dashboard.js.fmkr method
`
createTable($("#statisticsTable"), ${statisticsSummary!"{}"},
function(index, item){
switch(index){
// Errors pct
case 3:
item = item.toFixed(2) + '%';
break;
// Mean
case 4:
// Percentile 1
case 7:
// Percentile 2
case 8:
// Percentile 3
case 9:
// Throughput
case 10:
// Received Kbytes/s
case 11:
// Sent Kbytes/s
case 12:
item = item.toFixed(2);
break;
}
return item;
}, [[0, 0]], 0, summaryTableHeader);
`
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---