Skip to content
Snippets Groups Projects
Commit 52a42afb authored by Alex Ellis (OpenFaaS Ltd)'s avatar Alex Ellis (OpenFaaS Ltd)
Browse files

Update nodeinfo with content-type

parent b74cd09f
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,7 @@ module.exports = async (event, context) => {
let res = await info(content)
return context
.status(200)
.headers("Content-Type", "text/plain")
.succeed(res)
}
......@@ -18,9 +19,10 @@ async function info(content, callback) {
let val = "";
val += "Hostname: " + data +"\n";
val += "Platform: " + os.platform()+"\n";
val += "Arch: " + os.arch() + "\n";
val += "CPU count: " + os.cpus().length+ "\n";
val += "Total mem: "+ os.totalmem() + "\n";
val += "Platform: " + os.platform()+"\n";
val += "Uptime: " + os.uptime()+ "\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment