Events
Pylo records custom events: things that happen in your product, each with a name and a JSON properties payload. You get analytics out of them without running a separate tracking stack.
How it works:
- You ingest events with an
event_nameandproperties. The server sets the timestamp and namespaces every event name undercustom., adding the prefix when you leave it off. - Events land in a flat event store. You query
propertiesthrough dotted paths, for exampleuser.idororder.total. - Queries run in two modes. List mode returns raw event rows. Analytics mode groups events
by dimensions (fields or time buckets) and computes aggregates like
countorsum.
Explore ingested events in the admin panel under Events.