From 068b45023e73da9e3412f20fed1f124f6d44f823 Mon Sep 17 00:00:00 2001 From: Marcos Kirsch Date: Sun, 22 Feb 2015 16:06:35 -0600 Subject: [PATCH] Delete, this is now part of node-info.lua --- http/memory.lua | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 http/memory.lua diff --git a/http/memory.lua b/http/memory.lua deleted file mode 100644 index f2f805b..0000000 --- a/http/memory.lua +++ /dev/null @@ -1,13 +0,0 @@ -local function sendHeader(connection) - connection:send("HTTP/1.0 200 OK\r\nContent-Type: text/html\r\Cache-Control: private, no-store\r\n\r\n") -end - -return function (connection, args) - sendHeader(connection) - connection:send('A Lua script sample') - connection:send('') - connection:send('

Memory Statistics

') - connection:send('Heap: ' .. node.heap() .. ' bytes') - connection:send('Garbage collector use: ' .. collectgarbage("count") .. ' kilobytes') - connection:send('') -end