chore: simplify honeycomb alerts (#26142)

This commit is contained in:
Victor Navarro
2026-05-07 09:56:10 +02:00
committed by GitHub
parent 293bb422fa
commit f8aa4a3be0
15 changed files with 186 additions and 409 deletions
+4 -9
View File
@@ -11,15 +11,10 @@ export default $config({
stripe: {
apiKey: process.env.STRIPE_SECRET_KEY!,
},
random: "4.19.2",
planetscale: "0.4.1",
honeycomb: {
version: "0.49.0",
apiKey: process.env.HONEYCOMB_API_KEY!,
},
incident: {
version: "5.35.0",
apiKey: process.env.INCIDENT_API_KEY!,
},
honeycomb: "0.49.0",
incident: "5.35.0",
},
}
},
@@ -27,7 +22,7 @@ export default $config({
await import("./infra/app.js")
await import("./infra/console.js")
await import("./infra/enterprise.js")
if ($app.stage === "production") {
if ($app.stage === "production" || $app.stage === "vimtor") {
await import("./infra/monitoring.js")
}
},