Skip to content

Commit

Permalink
Merge pull request #10359 from eduardoj/introduce_user_rollout_measur…
Browse files Browse the repository at this point in the history
…ements

Introduce metrics for users in rollout
  • Loading branch information
hennevogel authored Oct 29, 2020
2 parents 4a7d80f + 89321a9 commit 8edff30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/app/jobs/measurements_job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ class MeasurementsJob < ApplicationJob

def perform
RabbitmqBus.send_to_bus('metrics', "group count=#{Group.count}")
RabbitmqBus.send_to_bus('metrics', "user in_beta=#{User.in_beta.count},count=#{User.count}")
RabbitmqBus.send_to_bus('metrics', "user in_beta=#{User.in_beta.count},in_rollout=#{User.in_rollout.count},count=#{User.count}")
end
end

0 comments on commit 8edff30

Please sign in to comment.