File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -179,6 +179,9 @@ impl UsageCounterState {
179179 UsageEvent :: CurrentFileStorage {
180180 tag : _,
181181 total_size : _,
182+ total_user_file_size : _,
183+ total_cloud_backup_size : _,
184+ total_snapshot_export_size : _,
182185 } => todo ! ( ) ,
183186 UsageEvent :: CurrentDocumentCounts { tables : _ } => todo ! ( ) ,
184187 }
Original file line number Diff line number Diff line change @@ -109,8 +109,13 @@ pub enum UsageEvent {
109109 tables : Vec < TableDatabaseStorage > ,
110110 } ,
111111 CurrentFileStorage {
112+ // TODO(Rebecca): tag and total_size can be cleaned up after we start using the other
113+ // fields
112114 tag : String ,
113115 total_size : u64 ,
116+ total_user_file_size : u64 ,
117+ total_cloud_backup_size : u64 ,
118+ total_snapshot_export_size : u64 ,
114119 } ,
115120 CurrentDocumentCounts {
116121 tables : Vec < TableDocumentCount > ,
You can’t perform that action at this time.
0 commit comments