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 07842fd commit f3d5e66Copy full SHA for f3d5e66
tinybird/pipes/vercel_deployment_duration.pipe
@@ -21,8 +21,8 @@ SQL >
21
FROM (
22
SELECT
23
event.payload.deployment.id as deployment_id,
24
- min(_event_time) as start_time,
25
- max(_event_time) as end_time
+ min(event_time) as start_time,
+ max(event_time) as end_time
26
FROM vercel_logs
27
WHERE event_type IN ('deployment.created', 'deployment.succeeded')
28
AND event_time >= {{DateTime(date_from, '2024-01-01 00:00:00')}}
0 commit comments