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.
2 parents d82b77f + db8c6fc commit 493f7b0Copy full SHA for 493f7b0
src/default_index.html
@@ -201,7 +201,11 @@
201
// build the key from the values in the schema
202
let key = {};
203
for (const s of schema) {
204
- key[s] = benchItem[s];
+ let value = benchItem[s];
205
+ if (typeof value === 'number') {
206
+ value = value.toString();
207
+ }
208
+ key[s] = value;
209
}
210
211
return JSON.stringify(key);
@@ -341,7 +345,11 @@
341
345
function buildTraceGroupKey(trace, groupBy) {
342
346
const traceGroup = {};
343
347
for (let key of groupBy) {
344
- traceGroup[key] = trace.metadata[key];
348
+ let value = trace.metadata[key];
349
350
351
352
+ traceGroup[key] = value;
353
354
return JSON.stringify(traceGroup);
355
0 commit comments