Python driver for TrippLite UPS battery backups.
Project description
tripplite
Python USB interface and command-line tool for TrippLite UPS battery backups.
Background
TrippLite offers UI software for monitoring its batteries. However, most of its batteries don't have network access, and the existing TrippLite software requires a local install.
I wanted to monitor the UPS from a remote headless Linux server, so I wrote this tool.
Supported Hardware
This has been exclusively tested on the TrippLite SMART1500LCD UPS. It will likely work on similar firmware but there is a known communication issue with some other TrippLite models (see numat/tripplite#3).
Use lsusb
to check. 09ae:2012
should work, while 09ae:3016
may not.
Installation
apt install gcc libusb-1.0-0-dev libudev-dev
pip install tripplite
Connect a USB cable from the UPS to your headless server, and you should be ready to run. If you don't want to run as root, see Note on Permissions below.
Command Line
$ tripplite
{
"config": {
"frequency": 60, # Hz
"power": 1500, # VA
"voltage": 120 # V
},
"health": 100, # %
"input": {
"frequency": 59.7, # Hz
"voltage": 117.2 # V
},
"output": {
"power": 324, # W
"voltage": 117.2 # V
},
"status": {
"ac present": true,
"below remaining capacity": true,
"charging": false,
"discharging": false,
"fully charged": true,
"fully discharged": false,
"needs replacement": false,
"shutdown imminent": false
},
"time to empty": 1004 # s
}
To use in shell scripts, parse the json output with something like
jq. For example,
tripplite | jq '.status."ac present"'
will return whether or not the unit
detects AC power.
Python
If you'd like to link this to more complex behavior (e.g. data logging, text alerts), consider using a Python script.
from tripplite import Battery
with Battery() as battery:
print(battery.get())
The state
variable will contain an object with the same format as above. Use
state['status']['ac present']
and state['status']['shutdown imminent']
for
alerts, and consider logging voltage, frequency, and power.
If you are logging multiple batteries, you will need to handle each connection separately.
from tripplite import Battery, battery_paths
for path in battery_paths:
with Battery(path) as battery:
print(battery.get())
These paths are unfortunately non-deterministic and will change on each iteration.
For long polling, you can improve stability by keeping connections open as long as possible and reconnecting on error. For example:
state = None
def read_batteries(check_period=5):
"""Read battery and reopen in error. Use for long polling."""
battery = Battery()
battery.open()
while True:
time.sleep(check_period)
try:
state = battery.get()
except OSError:
logging.exception(f"Could not read battery {battery}.")
battery.close()
battery.open()
An example for multiple batteries can be found in numat/tripplite#6.
Note on Permissions
To read the TrippLite, you need access to the USB port. You have options:
- Run everything as root
- Add your user to the
dialout
group to access all serial ports - Create a group restricted to accessing TrippLite USB devices through
udev
For the last option, the rule looks like:
echo 'SUBSYSTEM=="usb", ATTRS{idVendor}=="09ae", GROUP="tripplite"' > /etc/udev/rules.d/tripplite.rules
udevadm control --reload-rules
Prometheus Exporter
This package offers an extra install to include a Prometheus Exporter
which allows for data collection into a prometheus time series database. Esentially it's a small HTTP
server that allows
Prometheus to scrape grabbing metrics at a configurable period.
Install
pip install tripplite[exporter]
- This adds the prometheus_client dependency.
You can then manually run the triplite-exporter
cli or use the
tripplite_exporter.service
systemd unit file to have systemd run and supervise the process.
Failure Mode
The script will try to close and reopen the USB serial connection to the device on an OSError
. If an open fails,
the script will exit with the return code of 2.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file tripplite-0.4.0.tar.gz
.
File metadata
- Download URL: tripplite-0.4.0.tar.gz
- Upload date:
- Size: 15.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 556ed1a1572e3cbab7f763324d4947cebaff30824b8c4feda8797647f95f4524 |
|
MD5 | 49145842495101e65b35b99cd9113aa7 |
|
BLAKE2b-256 | 247402dcc11f51e22a2307821369e10952af6404cff38c34f897be70fcc75f7e |
File details
Details for the file tripplite-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: tripplite-0.4.0-py3-none-any.whl
- Upload date:
- Size: 15.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ec65375a3457d04d55b85f9e093d76ae51a99c9139b68d2ad88040f69b0457f |
|
MD5 | b3a6365334dfa0f66187a66962f9baaa |
|
BLAKE2b-256 | eed75a866ff735be26ed446bd2cd271cd05f33d8b7e6c8e7cf56df64df3948db |