Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ› should not stream to tb (#879)

authored by

Thibault Le Ouay and committed by
GitHub
9354b13c 30c7961a

+4 -2
+4 -2
apps/checker/cmd/main.go
··· 294 294 } 295 295 296 296 res = r 297 - if err := tinybirdClient.SendEvent(ctx, tbData, dataSourceName); err != nil { 298 - log.Ctx(ctx).Error().Err(err).Msg("failed to send event to tinybird") 297 + if tbData.RequestId != 0 { 298 + if err := tinybirdClient.SendEvent(ctx, tbData, dataSourceName); err != nil { 299 + log.Ctx(ctx).Error().Err(err).Msg("failed to send event to tinybird") 300 + } 299 301 } 300 302 return nil 301 303 }