# Events An event is the central entity of the platform. Everything that happens in your operation — a transaction, an authentication, a logistics milestone — reaches the platform in the form of an event. By modeling your occurrences as events, you gain a single, standardized entry point for data ingestion, regardless of the business domain. This allows you to: * **analyze data in real time**: track what is happening in your operation as events arrive; * **create custom metrics**: aggregate values, calculate rates, and track trends directly from received events; * **configure monitors**: define rules to detect anomalies, risks, or performance drops; * **evolve without coupling**: add new fields and event types without breaking existing integrations.
type: "transaction" fields: amount: number status: string currency: string
type: "transaction" id: "evt_8f3a" amount: 99.90 status: "approved" currency: "BRL"