Collector > Collect events via CLI agent
The Tallyfy Manufactory collector agent off-loads API event transmission and collects data from…
Once you’ve filled in the required values from the previous section, you can start sending actor-generated events through the Tallyfy Manufactory agent.
--actor (required) object - Pairs containing an attribute name and its corresponding value, using the correct attribute names and data types. See Get Actors schema.--event (required) object - Pairs containing an attribute name and its corresponding value, using the correct attribute names and data types. See Get events schema.{ "city": "New York", "country": "USA", "username": "john.doe", "email": "john.doe@email.com"}{ "event_name": "login", "event_type": "user-actions", "made_purchase": false}Before passing actor and event objects, you’ll need to encode them using base641.
manufactory-agent --actor=ewogICAgImNpdHkiOiAiTmV3I \ --event=ewogICAgImV2ZW50X25hbWUiO==The agent handles authentication and sends the events, then shuts down.
Collector > Collect events via CLI agent
Rest Api > Send events via the REST API
Collector > Collecting events via the REST API
Binary-to-text encoding scheme that converts binary data into ASCII characters so it’s safe for transmission ↩