janvda
janvda
In order to assure that nodes installed through `npm install` are not lost after a restart of the container, you must assure that they are installed in the `\data` directory....
I have also documented this in the readme under commit f1ef5770db7d8339e7d23184b057d1fe20a9b51c
Check if the following can be used for this. https://www.influxdata.com/blog/instrumenting-your-node-express-application/ which is based on https://github.com/RuntimeTools/appmetrics The configuration of some of the appmetrics.properties is defined here: https://www.ibm.com/support/knowledgecenter/SS3KLZ/com.ibm.java.diagnostics.healthcenter.doc/topics/configproperties.html To check first: if...
It is possible to install appmetrics on arm device (raspberry) by issuing the following command in one of the node-red containers: `npm install appmetrics` it takes some time as it...
As next step I would in node-red flow listen to topic # (is all messages) to check if it really sends an mqtt and what the topic is. Update: I...
The following instruction can be executed in the node-red-test shell to activitate instrumentation: `sed -i 's?var fs = require("fs-extra");?var fs = require("fs-extra");\n\n/* JVA: adding appmetrics instructions*/\nvar appmetrics = require("appmetrics");\nvar monitoring...
Following github defines a dashboard https://github.com/RuntimeTools/appmetrics-dash or a better link: https://developer.ibm.com/node/2017/07/26/visualize-node-red-flow-performance-using-node-application-metrics/ It is currently not working but it might conflict with the other appmetrics module that is installed (maybe best...
I have posted below comment on site: https://developer.ibm.com/node/2017/07/26/visualize-node-red-flow-performance-using-node-application-metrics/ ``` Hi Matthew, This is a very interesting tutorial. I have tried to reproduce this without much success. So I am just...
I also reported https://github.com/RuntimeTools/appmetrics-dash/issues/167
so far restarting the nginx container always fixed this issue.