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 6c75090 commit 9020210Copy full SHA for 9020210
.evergreen/perf_send.mjs
@@ -2,6 +2,7 @@
2
'use strict';
3
4
import * as fs from 'fs/promises';
5
+import { inspect } from 'util';
6
console.log(process.versions);
7
const API_PATH = "https://performance-monitoring-service-rest.server-tig.prod.corp.mongodb.com/raw_perf_results"
8
@@ -38,7 +39,7 @@ const body = {
38
39
results: JSON.parse(results)
40
};
41
-console.log(body);
42
+console.log(inspect(body, { depth: Infinity }));
43
44
const resp = await fetch(API_PATH, {
45
method: "POST",
0 commit comments