Openstatus www.openstatus.dev

fix: tb pipes (#1335)

authored by

Maximilian Kaske and committed by
GitHub
e6e19d41 0d10a1b3

+4 -4
+1 -1
apps/dashboard/src/components/content/billing-overlay.tsx
··· 21 21 return ( 22 22 <div 23 23 className={cn( 24 - "absolute inset-0 flex flex-col items-center justify-center gap-2 bg-gradient-to-b from-transparent to-50% to-background", 24 + "absolute inset-0 flex flex-col items-center justify-center gap-2 bg-gradient-to-b from-transparent to-50% to-background p-2", 25 25 className, 26 26 )} 27 27 {...props}
+1 -1
packages/tinybird/pipes/endpoint__http_metrics_regions_14d__v0.pipe
··· 16 16 FROM mv__http_14d__v0 17 17 WHERE 18 18 monitorId = {{ String(monitorId, '1', required=True) }} 19 - AND region IN {{ Array(regions, 'String', 'ams,fra') }} 19 + {% if regions %} AND region IN {{ Array(regions, 'String', 'ams,fra') }} {% end %} 20 20 GROUP BY h, region 21 21 ORDER BY h DESC 22 22
+1 -1
packages/tinybird/pipes/endpoint__http_metrics_regions_1d__v0.pipe
··· 16 16 FROM mv__http_1d__v0 17 17 WHERE 18 18 monitorId = {{ String(monitorId, '1', required=True) }} 19 - AND region IN {{ Array(regions, 'String', 'ams,fra') }} 19 + {% if regions %} AND region IN {{ Array(regions, 'String', 'ams,fra') }} {% end %} 20 20 GROUP BY h, region 21 21 ORDER BY h DESC 22 22
+1 -1
packages/tinybird/pipes/endpoint__http_metrics_regions_7d__v0.pipe
··· 16 16 FROM mv__http_7d__v0 17 17 WHERE 18 18 monitorId = {{ String(monitorId, '1', required=True) }} 19 - AND region IN {{ Array(regions, 'String', 'ams,fra') }} 19 + {% if regions %} AND region IN {{ Array(regions, 'String', 'ams,fra') }} {% end %} 20 20 GROUP BY h, region 21 21 ORDER BY h DESC 22 22