🪟 Windows TippsThe Gemini desktop app is now available for Windows(11.09.2026 um 17:06 Uhr)
⚠️ Malware / Trojaner / VirenWindows 11 just dropped the tool ransomware abused, Microsoft says don’t restore WMIC(10.09.2026 um 20:11 Uhr)
⚠️ Malware / Trojaner / VirenVorsicht: Android-Malware verschlüsselt Ihre Handys und nimmt heimlich Fotos auf(11.09.2026 um 09:35 Uhr)
🕵️ SicherheitslückenMicrosoft geht endlich eines der nervigsten Probleme von Windows 11 an(11.09.2026 um 11:58 Uhr)
💾 IT Security ToolsSysinternals Suite(11.09.2026 um 12:00 Uhr)
🕵️ SicherheitslückenDefender 0-Day ShieldBreak (CVE-2026-69414) nicht sauber gepatcht - BornCity(11.09.2026 um 12:52 Uhr)
🪟 Windows TippsThe Gemini desktop app is now available for Windows(11.09.2026 um 17:06 Uhr)
⚠️ Malware / Trojaner / VirenWindows 11 just dropped the tool ransomware abused, Microsoft says don’t restore WMIC(10.09.2026 um 20:11 Uhr)
⚠️ Malware / Trojaner / VirenVorsicht: Android-Malware verschlüsselt Ihre Handys und nimmt heimlich Fotos auf(11.09.2026 um 09:35 Uhr)
🕵️ SicherheitslückenMicrosoft geht endlich eines der nervigsten Probleme von Windows 11 an(11.09.2026 um 11:58 Uhr)
💾 IT Security ToolsSysinternals Suite(11.09.2026 um 12:00 Uhr)
🕵️ SicherheitslückenDefender 0-Day ShieldBreak (CVE-2026-69414) nicht sauber gepatcht - BornCity(11.09.2026 um 12:52 Uhr)

🔧 Programmierung 🕛 vor 1 Jahr 4 Min Lesezeit
0

How fast do you ship? Measure your deployment velocity with Vercel and Tinybird

↗ Quelle (dev.to)
🗣️ Stimme:
📑 Inhaltsübersicht
📺
dev.to

Vercel is the web platform for software teams that ship fast. But how fast? And do we maintain that velocity over time?



Vercel webhooks allow you to push your data out of Vercel and do whatever you want with it. This works out of the box with Tinybird’s .



But, called the Dev Stack Analytics Template. Analyze data from their entire stack - including tools like Vercel, Auth0, GitHub, Resend, Clerk, Stripe, and more - in one place.







Show me the data



This dashboard (source I built these charts using Vercel webhooks, Tinybird, and a simple Next.js app.



To build this dashboard we have a stack like this:




  1. Vercel pushes data to the Tinybird Events API via webhooks.

  2. We create some SQL transformations (Pipes) in Tinybird and publish them as API endpoints.

  3. A Next.js app with shadcn/charts calls the Tinybird APIs and plots the data.



As far as web app stacks go, it couldn't be much simpler.






Adding a new chart



To add a new chart, we only need to do two things:




  1. Write a new SQL query

  2. Build the chart component



Here’s what that looks like if I want to know who gets bragging rights as the fastest developer in the west.



Vercel’s webhook data looks something like this:




CODE
{
"createdAt": "1734960637036",
...
"payload": {
...
"deployment": {
"meta": {
"gitlabCommitAuthorLogin": "xavijam",
"gitlabCommitAuthorName": "Javier Álvarez Medina",
"gitlabCommitMessage": "Adding title and description\n",
...
},
"name": "tinybird-docs",
"url": "tinybird...vercel.app"
},
...
"type": "deployment.created"
}






I’m interested in several things in this data:




  1. The user’s git login and name

  2. The event type

  3. The event time



I want to count how many deployments each person is creating, so I can rank them. The query looks like this:




CODE
%
SELECT
coalesce(
event.payload.deployment.meta.githubCommitAuthorName::String,
event.payload.deployment.meta.gitlabCommitAuthorName::String
) AS author,
count() as commits
FROM vercel
WHERE event_type = 'deployment.created'
AND event_time >= {{DateTime(date_from, '2024-01-01 00:00:00')}}
AND event_time <= {{DateTime(date_to, '2024-12-31 23:59:59')}}
AND author != ''
GROUP BY author
ORDER BY commits DESC






Pushing that query to Tinybird, I get an API that returns a result like this:




CODE
{
...
"data":
[
{
"author": "alrocar",
"commits": 83
},
{
"author": "sdairs",
"commits": 18
},
{
"author": "Fabrizio Ferri-Benedetti",
"commits": 8
},
{
"author": "Alasdair Brown",
"commits": 4
},
{
"author": "dependabot[bot]",
"commits": 1
}
],
...
}






Just a quick fetch() to pull the data:




CODE
let url = new URL(`https://api.tinybird.co/v0/pipes/git_analytics.json`)
url.searchParams.append('date_from', '2024-01-01 00:00:00')
url.searchParams.append('date_to', '2024-12-31 23:59:59')
const result = await fetch(url, {
headers: {
Authorization: 'Bearer ...'
}
})
.then(r => r.json())
.then(r => r)
.catch(e => e.toString())
...
return result.data






And via the magic of I used shadcn chart components to visualize the response from my Tinybird endpoint






But what else?



Vercel exposes many events over time to correlate the impact of errors against deployments and see how increasing error rates impact our shipping speed.



Or we could enrich deployment errors with deployment logs, find the most common errors, and eliminate them to improve deployment consistency overall.



Once the data lands in Tinybird, exploring and productizing these ideas takes just minutes.



and ask away.

Vollständiger Original-Bericht
Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf dev.to.
↗ Original-Artikel auf dev.to lesen
Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 0%
🟡 In Evaluierung 0%
🟢 Keine Auswirkung 0%
Spannende Innovation 0%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
1 Quelle
The Gemini desktop app is now available for Windows
1 Quelle
Windows 11 just dropped the tool ransomware abused, Microsoft says don’t restore WMIC
1 Quelle
Vorsicht: Android-Malware verschlüsselt Ihre Handys und nimmt heimlich Fotos auf
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten How fast do you ship? Measure your deployment velocity with Vercel and Tinybird

Thematisch verwandte Begriffe: fast, ship, Measure, your · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...