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 {
179
179
UsageEvent :: CurrentFileStorage {
180
180
tag : _,
181
181
total_size : _,
182
+ total_user_file_size : _,
183
+ total_cloud_backup_size : _,
184
+ total_snapshot_export_size : _,
182
185
} => todo ! ( ) ,
183
186
UsageEvent :: CurrentDocumentCounts { tables : _ } => todo ! ( ) ,
184
187
}
Original file line number Diff line number Diff line change @@ -109,8 +109,13 @@ pub enum UsageEvent {
109
109
tables : Vec < TableDatabaseStorage > ,
110
110
} ,
111
111
CurrentFileStorage {
112
+ // TODO(Rebecca): tag and total_size can be cleaned up after we start using the other
113
+ // fields
112
114
tag : String ,
113
115
total_size : u64 ,
116
+ total_user_file_size : u64 ,
117
+ total_cloud_backup_size : u64 ,
118
+ total_snapshot_export_size : u64 ,
114
119
} ,
115
120
CurrentDocumentCounts {
116
121
tables : Vec < TableDocumentCount > ,
You can’t perform that action at this time.
0 commit comments