File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
test/benchmarks/driverBench Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
const MongoBench = require ( '../mongoBench' ) ;
4
4
const os = require ( 'node:os' ) ;
5
+ const util = require ( 'node:util' ) ;
5
6
const process = require ( 'node:process' ) ;
6
7
7
8
const Runner = MongoBench . Runner ;
@@ -32,7 +33,10 @@ const systemInfo = () =>
32
33
`- arch: ${ os . arch ( ) } ` ,
33
34
`- os: ${ process . platform } (${ os . release ( ) } )` ,
34
35
`- ram: ${ platform . ram } ` ,
35
- `- node: ${ process . version } \n`
36
+ `- node: ${ process . version } ` ,
37
+ `- driver: ${ MONGODB_DRIVER_VERSION } (${ MONGODB_DRIVER_REVISION } ): ${ MONGODB_DRIVER_PATH } ` ,
38
+ ` - options ${ util . inspect ( MONGODB_CLIENT_OPTIONS ) } ` ,
39
+ `- bson: ${ MONGODB_BSON_VERSION } (${ MONGODB_BSON_REVISION } ): (${ MONGODB_BSON_PATH } )\n`
36
40
] . join ( '\n' ) ;
37
41
console . log ( systemInfo ( ) ) ;
38
42
You can’t perform that action at this time.
0 commit comments