Real-time UI for bots.
Python 3 bindings for RillRate.
Install the library:
sh
pip install rillrate
Import it in your code and install a tracer:
python
import rillrate
rillrate.install("my-app")
Add a metric and use methods to update it:
python
gauge = rillrate.Counter("my-package.my-dashboard.my-group.my-counter");
gauge.inc(123);