log Notification db table size (#5920) [deploy]

This commit is contained in:
Molly Struve 2020-02-06 08:33:04 -05:00 committed by GitHub
parent fd5643bc9d
commit a972c8b892
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@ module Metrics
sidekiq_options queue: :low_priority, retry: 10
def perform
models = [User, Article, Organization, Comment, Podcast, ClassifiedListing, PageView]
models = [User, Article, Organization, Comment, Podcast, ClassifiedListing, PageView, Notification]
models.each do |model|
estimate = model.estimated_count
Rails.logger.info("db_table_size", table_info: { table_name: model.table_name, table_size: estimate })