1
0
mirror of synced 2026-01-03 15:04:01 -05:00
Files
airbyte/airbyte-integrations/connectors/source-sentry/bootstrap.md
Marcos Marx 1f04c62cb6 🎉 Source Sentry: add stream releases (#24768)
* Add Releases stream to Sentry Connector

* update documentation

* remove stream from configured catalog

* fix tests

* format doc changelog

* format path function and change strict level to high

* auto-bump connector version

---------

Co-authored-by: Keith Thompson <keithjoethompson@gmail.com>
Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
2023-04-03 12:12:31 -03:00

18 lines
1.0 KiB
Markdown

## Streams
Sentry is a REST API. Connector has the following streams, and all of them support full refresh and incremental.
* [Events](https://docs.sentry.io/api/events/list-a-projects-events/)
* [Issues](https://docs.sentry.io/api/events/list-a-projects-issues/)
* [Projects](https://docs.sentry.io/api/projects/list-your-projects/)
* [Releases](https://docs.sentry.io/api/releases/list-an-organizations-releases/)
And a [ProjectDetail](https://docs.sentry.io/api/projects/retrieve-a-project/) stream is also implemented just for connection checking.
## Authentication
Sentry API offers three types of [authentication methods](https://docs.sentry.io/api/auth/).
* Auth Token - The most common authentication method in Sentry. Connector only supports this method.
* DSN Authentication - Only some API endpoints support this method. Not supported by this connector.
* API Keys - Keys are passed using HTTP Basic auth, and a legacy means of authenticating. They will still be supported but are disabled for new accounts. Not supported by this connector.