chore(xen-api): remove unused memory test

This commit is contained in:
Julien Fontanet
2021-04-23 14:59:02 +02:00
parent 3f42199f8f
commit 263f693542
2 changed files with 0 additions and 26 deletions

View File

@@ -1,4 +0,0 @@
set yrange [ 0 : ]
set grid
plot for [i=2:4] "plot.dat" using 1:i with lines

View File

@@ -1,22 +0,0 @@
#!/usr/bin/env node
import { createClient } from './'
let i = 0
setInterval(() => {
const usage = process.memoryUsage()
console.log(
'%s %s %s %s',
i++,
Math.round(usage.rss / 1e6),
Math.round(usage.heapTotal / 1e6),
Math.round(usage.heapUsed / 1e6)
)
}, 1e2)
const [, , url, user, password] = process.argv
createClient({
auth: { user, password },
readOnly: true,
url,
}).connect()