Skip to content

Commit

Permalink
Merge pull request #90 from jakthom/pipelined
Browse files Browse the repository at this point in the history
Provide a more pipeline-y example
  • Loading branch information
jakthom authored Nov 22, 2024
2 parents d87a961 + 77b53c3 commit ad15974
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hercules-packages/bluesky/1.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ad15974

Please sign in to comment.