SageWorks BINLFOW
Setup
- Install PostgreSQL 14+ and Python 3.10+.
-
createdb binflowandpsql -d binflow -f binflow_schema.sql. -
pip install -r requirements.txt.
Run Demo
export BINFLOW_DSN="dbname=binflow user=postgres password=postgres"
python demo.py
Queries
- Last 24h mix:
SELECT stream_id, tag, COUNT(*) FROM event WHERE t >= now() - interval '24 hours' GROUP BY stream_id, tag; - Explainability: See
api.pyfor joins.
License
MIT

Top comments (0)