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
virtualization: add new builtin command to print hydration level (microsoft#659)
GVFS users can easily (and accidentally) over-hydrate their enlistments.
This causes some commands to be very slow.
Create a command to print the current hydration level. This should help
our support team investigate the state of their enlistment.
This command will print something like:
```
% git virtualization
Skipped: 2
Hydrated: 3
Total: 5
Hydration: 60.00%
```
and log those values to Trace2 in a `data_json` record of the form:
```
{"skipped":2,"hydrated":3,"total":5,"hydration":60.00}
```
0 commit comments