We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2ab2be commit ddf14a8Copy full SHA for ddf14a8
tinybird/datasources/sentry.datasource
@@ -0,0 +1,17 @@
1
+TOKEN "append" APPEND
2
+
3
+# Refer to https://docs.sentry.io/organization/integrations/integration-platform/webhooks/ for the json schemas
4
5
+TAGS "sentry"
6
7
+SCHEMA >
8
+ `action` LowCardinality(String) `json:$.action`,
9
+ `actor_id` String `json:$.actor.id` DEFAULT '',
10
+ `actor_name` String `json:$.actor.name` DEFAULT '',
11
+ `actor_type` String `json:$.actor.type` DEFAULT '',
12
+ `data` JSON `json:$.data`,
13
+ `resolution_type` LowCardinality(String) `json:$.data.resolution_type` DEFAULT '',
14
+ `installation_uuid` String `json:$.installation.uuid` DEFAULT ''
15
16
+ENGINE "MergeTree"
17
+ENGINE_SORTING_KEY "action, actor_name"
0 commit comments