Sinks

Sinks are the "destination" of the events processed by Oura. They are the concrete link between the internal representation of the data records and the corresponding external service interested in the data. Typical sinks include: database engines, stream-processing engines, web API calls and FaaS solutions.

Built-in Sinks

These are the existing sinks that are included as part the main Oura codebase:

  • Terminal: a sink that outputs events into stdout with fancy coloring
  • Kakfa: a sink that sends each event into a Kafka topic
  • Elasticsearch: a sink that writes events into an Elasticsearch index or data stream.
  • Webhook: a sink that outputs each event as an HTTP call to a remote endpoint.
  • Logs: a sink that saves events to the file system using JSONL text files.
  • AWS SQS: a sink that sends each event as message to an AWS SQS queue.
  • AWS Lamda: a sink that invokes an AWS Lambda function for each event.
  • AWS S3: a sink that saves the CBOR content of the blocks as an AWS S3 object.
  • Redis Streams: a sink that sends each event into a Redis stream.

New sinks are being developed, information will be added in this documentation to reflect the updated list. Contributions and feature request are welcome in our Github Repo.