You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Track dedupe index file size in org storage stats (#3207)
Fixes#3206
## Backend changes
- Adds size of dedupe index files to org storage stats
- Removes bytes from org storage stats when dedupe index is deleted if
file was saved
- Adds new stats to org metrics endpoint
- Adds `await` that was missing in method for updating index state
- Updates (and fixes) test for org metrics endpoint
## Frontend changes
- Includes dedupe index files in Misc storage in dashboard storage meter
- Updates type for org metrics
---------
Co-authored-by: Ilya Kreymer <ikreymer@users.noreply.github.com>
@@ -538,7 +540,7 @@ export class Dashboard extends BtrixElement {
538
540
${msg("Miscellaneous")}
539
541
<btrix-popover
540
542
content=${msg(
541
-
"Total size of all supplementary files in use by your organization, such as workflow URL list files and custom collection thumbnails.",
543
+
"Total size of all supplementary files in use by your organization, such as workflow URL list files, custom collection thumbnails, and deduplication indexes.",
542
544
)}
543
545
>
544
546
<sl-icon
@@ -549,7 +551,9 @@ export class Dashboard extends BtrixElement {
0 commit comments