update io nodes info style

This commit is contained in:
Dave Conway-Jones
2016-03-02 13:26:19 +00:00
parent 81c532fdce
commit 0880ad3987
17 changed files with 64 additions and 62 deletions

View File

@@ -7,33 +7,32 @@ fetch either individual oids, or a table oid from a SNMP enabled host.
Install
-------
Run the following command in the user directory of your Node-RED install.
( typically ~/.node-red )
Run the following command in your Node-RED user directory - typically `~/.node-red`
npm install node-red-node-snmp
Usage
-----
###snmp
### snmp
SNMP oids fetcher. Can fetch a single or comma separated list of oids. Triggered by any input.
`msg.oid` may contain a comma separated list of oids to search for. (no spaces)
The oids confgured in the edit config will override msg.oid. Leave blank if you
want to use msg.oid to provide input.
The oids confgured in the edit config will override `msg.oid`. Leave blank if you
want to use `msg.oid` to provide input.
Outputs `msg.payload` containing a table of objects, and the requested `msg.oid`.
Values depends on the oids being requested.
###snmp-table
### snmp-table
Simple SNMP table oid fetcher. Triggered by any input.
`msg.oid` may contain the oid of a single table to search for.
The oid confgured in the edit config will override msg.oid. Leave blank if you
want to use msg.oid to provide input.
The oid confgured in the edit config will override `msg.oid`. Leave blank if you
want to use `msg.oid` to provide input.
Outputs `msg.payload` containing the table of objects, and the requested `msg.oid`.
Values depends on the oids being requested.

View File

@@ -1,6 +1,6 @@
{
"name" : "node-red-node-snmp",
"version" : "0.0.4",
"version" : "0.0.5",
"description" : "A Node-RED node that looks for SNMP oids.",
"dependencies" : {
"net-snmp" : "1.1.13"