From 77b53c35f258d982be536da2f062347760f1f4c7 Mon Sep 17 00:00:00 2001 From: jakthom Date: Thu, 21 Nov 2024 20:06:17 -0500 Subject: [PATCH] more pipeline-y --- hercules-packages/bluesky/1.0.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hercules-packages/bluesky/1.0.yaml b/hercules-packages/bluesky/1.0.yaml index f9ee094..2215968 100644 --- a/hercules-packages/bluesky/1.0.yaml +++ b/hercules-packages/bluesky/1.0.yaml @@ -147,7 +147,7 @@ metrics: - name: jetstream_posts_per_minute_bucket help: Quantiles of posts per minute - sql: from jetstream |> select date_trunc('minute', make_timestamp(time_us)), count(*) where commit.collection = 'app.bsky.feed.post' and commit.operation = 'create' group by 1; + sql: from jetstream |> where commit.collection = 'app.bsky.feed.post' and commit.operation = 'create' |> select date_trunc('minute', make_timestamp(time_us)), count(*) group by 1; objectives: - 0.5 - 0.9