We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ca80ab commit 0d5fe8bCopy full SHA for 0d5fe8b
hystrix-dashboard/src/main/webapp/components/hystrixCommand/hystrixCommand.js
@@ -93,7 +93,7 @@
93
// escape string used in jQuery & d3 selectors
94
data.escapedName = data.name.replace(/([ !"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g,'\\$1');
95
// do math
96
- converAllAvg(data);
+ convertAllAvg(data);
97
calcRatePerSecond(data);
98
}
99
@@ -110,7 +110,7 @@
110
*
111
* We want to do this on any numerical values where we want per instance rather than cluster-wide sum.
112
*/
113
- function converAllAvg(data) {
+ function convertAllAvg(data) {
114
convertAvg(data, "errorPercentage", true);
115
convertAvg(data, "latencyExecute_mean", false);
116
convertAvg(data, "latencyTotal_mean", false);
0 commit comments