Skip to content

Commit

Permalink
jet. stream.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakthom committed Nov 21, 2024
1 parent 4b3bc76 commit d337601
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hercules-packages/bluesky/1.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ metrics:
- 0.99

# Jetstream
- name: jestream_user_signups_per_minute_bucket
- name: jetstream_user_signups_per_minute_bucket
help: Quantiles of the rate of user signups per minute
sql: select date_trunc('minute', make_timestamp(time_us)), count(*) from jetstream where commit.collection = 'app.bsky.actor.profile' and commit.operation = 'create' group by 1 order by 1 asc;
objectives:
Expand All @@ -114,7 +114,7 @@ metrics:
- 0.99
- 0.999

- name: jestream_reposts_per_minute_bucket
- name: jetstream_reposts_per_minute_bucket
help: Quantiles of the rate of reposts per minute
sql: select date_trunc('minute', make_timestamp(time_us)), count(*) from jetstream where commit.collection = 'app.bsky.feed.repost' group by 1;
objectives:
Expand All @@ -123,7 +123,7 @@ metrics:
- 0.99
- 0.999

- name: jestream_likes_per_minute_bucket
- name: jetstream_likes_per_minute_bucket
help: Quantiles of the rate of likes per minute
sql: select date_trunc('minute', make_timestamp(time_us)), count(*) from jetstream where commit.collection = 'app.bsky.feed.like' and commit.operation = 'create' group by 1;
objectives:
Expand All @@ -132,7 +132,7 @@ metrics:
- 0.99
- 0.999

- name: jestream_follows_per_minute_bucket
- name: jetstream_follows_per_minute_bucket
help: Quantiles of the rate of follows per minute
sql: select date_trunc('minute', make_timestamp(time_us)), count(*) from jetstream where commit.collection = 'app.bsky.graph.follow' and commit.operation = 'create' group by 1;
objectives:
Expand Down

0 comments on commit d337601

Please sign in to comment.