Skip to content

Latest commit

 

History

History
65 lines (46 loc) · 2.66 KB

File metadata and controls

65 lines (46 loc) · 2.66 KB

Sentry

This connector captures data from Sentry into Flow collections.

It is available for use in the Flow web application. For local development or open-source workflows, ghcr.io/estuary/source-sentry:dev provides the latest version of the connector as a Docker image. You can also follow the link in your browser to see past image versions.

This connector is based on an open-source connector from a third party, with modifications for performance in the Flow system.

Supported data resources

The following data resources are supported through the Sentry APIs:

By default, each resource is mapped to a Flow collection through a separate binding.

Prerequisites

Configuration

You configure connectors either in the Flow web app, or by directly editing the catalog specification file. See connectors to learn more about using connectors. The values and specification sample below provide configuration details specific to the Sentry source connector.

Properties

Endpoint

Property Title Description Type Required/Default
/auth_token Auth Token Auth Token generated in Sentry string Required
/organization Organization The slug of the organization the groups belong to. string Required
/project Project The name (slug) of the Project you want to sync. string Required

Bindings

Property Title Description Type Required/Default
/stream Stream Resource of your Sentry project from which collections are captured. string Required
/syncMode Sync Mode Connection method. string Required

Sample

captures:
  ${PREFIX}/${CAPTURE_NAME}:
    endpoint:
      connector:
        image: ghcr.io/estuary/source-sentry:dev
        config:
          auth_token: <secret>
          organization: <your organization>
          project: <your project>
    bindings:
      - resource:
          stream: events
          syncMode: full_refresh
        target: ${PREFIX}/events
      {...}