@@ -946,35 +946,35 @@ message WorkspaceSession {
946
946
947
947
// Add these new message definitions
948
948
message InitializerMetric {
949
- // Duration in seconds
949
+ // duration in seconds
950
950
google.protobuf.Duration duration = 1 ;
951
951
952
- // Size in bytes
952
+ // size in bytes
953
953
uint64 size = 2 ;
954
954
}
955
955
956
956
message InitializerMetrics {
957
- // Git contains metrics for the git initializer step
958
- // This is set whenenver a `git clone` is issued (mostly on first workspace start)
957
+ // git contains metrics for the git initializer step
958
+ // This is set whenever a `git clone` is issued (mostly on first workspace start)
959
959
InitializerMetric git = 1 ;
960
960
961
- // FileDownload contains metrics for the file download initializer step
961
+ // file_download contains metrics for the file download initializer step
962
962
// This is set for injecting "additionalFiles" into the workspace.
963
963
InitializerMetric file_download = 2 ;
964
964
965
- // Snapshot contains metrics for the snapshot initializer step
965
+ // snapshot contains metrics for the snapshot initializer step
966
966
// This used for workspaces started from snapshots.
967
967
InitializerMetric snapshot = 3 ;
968
968
969
- // Backup contains metrics for the backup initializer step
969
+ // backup contains metrics for the backup initializer step
970
970
// This is set on subsequent workspace starts, when the file system is restored from backup.
971
971
InitializerMetric backup = 4 ;
972
972
973
- // Prebuild contains metrics for the prebuild initializer step
973
+ // prebuild contains metrics for the prebuild initializer step
974
974
// This is set if the workspace is based on a prebuild.
975
975
InitializerMetric prebuild = 5 ;
976
976
977
- // Composite contains metrics for the composite initializer step
977
+ // composite contains metrics for the composite initializer step
978
978
// This reports the total if multiple steps are run to initialize the workspace content.
979
979
// Examples are:
980
980
// - "additionalFiles" injected into the workspace
0 commit comments