From fb2f1c72f9e68434b5f45e004b6045982980de1e Mon Sep 17 00:00:00 2001 From: jakthom Date: Thu, 21 Nov 2024 11:22:37 -0500 Subject: [PATCH] posts-too-duh --- hercules-packages/bluesky/1.0.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hercules-packages/bluesky/1.0.yaml b/hercules-packages/bluesky/1.0.yaml index 0444b40..baa5f74 100644 --- a/hercules-packages/bluesky/1.0.yaml +++ b/hercules-packages/bluesky/1.0.yaml @@ -140,3 +140,12 @@ metrics: - 0.9 - 0.99 - 0.999 + + - name: jetstream_posts_per_minute_bucket + help: Quantiles of posts per minute + sql: select date_trunc('minute', make_timestamp(time_us)), count(*) from jetstream where commit.collection = 'app.bsky.feed.post' and commit.operation = 'create' group by 1; + objectives: + - 0.5 + - 0.9 + - 0.99 + - 0.999