Skip to main content

Industrial protocols data puller

Project description

Pulr - pull devices and transform data into events

What is Pulr

Pulr is a small command-line tool, which can pull data from the device and convert it into events. Meaning the data is outputted ONLY when it's changed.

The data is always being outputted to STDOUT, you can grep it or use any pipeline processor (I use vector) to push it via HTTP, into databases etc.

Before the output, any data part can be transformed: converted, divided, multiplied, rounded and so on.

The data can be outputted as plain text or as nd-json.

pulr -F modbus.yml -L
{"id":"sensor:axon/din1.value","value":0}
{"id":"sensor:axon/din2.value","value":1}
{"id":"sensor:axon/din3.value","value":1}
{"id":"sensor:axon/din4.value","value":0}
{"id":"unit:axon/dout1.status","value":1}
{"id":"unit:axon/dout2.status","value":1}
{"id":"unit:axon/dout3.status","value":0}
{"id":"unit:axon/dout4.status","value":0}
{"id":"unit:axon/aout.value","value":0.00619}
{"id":"sensor:axon/ain.value","value":5.2045}
{"id":"unit:tests/u1.status","value":0}
{"id":"unit:tests/u2.status","value":0}

Installing

pip3 insall pulr
# for SNMP support
pip3 install python3-netsnmp
# for Modbus
pip3 install pymodbus
# optionally, install rapidjson to make JSON output faster
pip3 install python-rapidjson

Ethernet/IP support requires libplctag, download and install it:

git clone https://github.com/libplctag/libplctag
cd libplctag
cmake CMakeLists.txt
make
sudo make install
sudo ldconfig

Configuring

Look in ./examples for the example configurations.

How does it work

One Pulr instance pulls one piece of the hardware equipment. The goal is to pull and process the data as fast as possible, but die as soon as any errors occur. Pulr is built to be started by supervisor, which collects the data from it and restarts the process on crashes.

But it's possible to run the tool with "-R" flag, which tells Pulr to restart the main loop in case of failures.

Is it fast enough?

Pulr is written in Python, but it's written to be fast enough (e.g. Modbus devices can be pulled up to 50 times per second without any problem).

Pulr code is written to be easily transformed to Rust or Golang, I plan to do this very soon.

Protocols

Currently supported:

  • Modbus (TCP/UDP)
  • SNMP (v1/v2)
  • Ethernet/IP (Allen Bradley-compatible, experimental)

Data transformers

  • speed - calculate value growing speed, useful for SNMP interface counters
  • multiply, divide, round
  • bit2int - convert boolean bits into integers (1/0)
  • int2bit - convert integers (any value/0) into boolean bits (true/false)

Output type

  • text - output the data as plain text, default
  • ndjson - output the data as newline delimited JSON
  • csv - comma-separated values
  • eva/datapuller - specific type for EVA ICS

Optional field "time-format" adds time to data output. Valid values are: "iso", "timestamp".

Bugs, feature requests, patches

You are welcome. For the patches, please avoid Python-specific coding style (e.g. function kwargs), as Python version will be rewritten very soon.

Just:

  • Outputs. No outputs are planned, except STDOUT. Use pipeline converters.

  • Pulling more than one device simultaneously. Isn't planned, start another Pulr process instead.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pulr-0.1.8.tar.gz (12.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page