J'envoie maintenant à Grafana l'état de la RAM à chaque http_post, peut-être que j'arriverai mieux à suivre les fuites ;-)

This commit is contained in:
Christian Zufferey
2020-06-07 16:46:20 +02:00
parent 8784c7dc7e
commit 5f9df6bbe7

View File

@@ -1,7 +1,7 @@
-- Petit script pour envoyer en // es valeurs sur un serveur WEB (InfluxDB)
-- via un http POST à travers un FIFO
if verbose then print("\n 0_http_post.lua zf200607.1611 \n") end
if verbose then print("\n 0_http_post.lua zf200607.1639 \n") end
t_zurl={} t_zarg={} f_zpost=false
@@ -11,7 +11,9 @@ end
function zpost()
f_zpost=true zurl=t_zurl[1] zarg=t_zarg[1]
zarg=zarg.."\n".."energy,value=nb_waiting_"..yellow_id.." val="..#t_zurl
zarg=zarg.."\n".."energy,value=nb_waiting_"..yellow_id.." val="..#t_zurl
zarg=zarg.."\n".."energy,memory=zpost_"..yellow_id.." ram="..node.heap()
if verbose then print("zurl: "..zurl) end if verbose then print("zarg: "..zarg) end
http.post(zurl, 'Content-Type: application/x-www-form-urlencoded\r\n', zarg, function(code, data)