| Index: client/cmd/isolate/exp_archive.go
|
| diff --git a/client/cmd/isolate/exp_archive.go b/client/cmd/isolate/exp_archive.go
|
| index 70496b89eb74191887d3d050278814b2eeb253b8..8054cc7b483df302d1587a3ae63d65521f1d7337 100644
|
| --- a/client/cmd/isolate/exp_archive.go
|
| +++ b/client/cmd/isolate/exp_archive.go
|
| @@ -260,6 +260,10 @@ func (c *expArchiveRun) main() error {
|
|
|
| // TODO(mcgreevy): fill out more stats in archiveDetails.
|
| archiveDetails := &logpb.IsolateClientEvent_ArchiveDetails{
|
| + HitCount: proto.Int64(int64(checker.Hit.Count)),
|
| + MissCount: proto.Int64(int64(checker.Miss.Count)),
|
| + HitBytes: &checker.Hit.Bytes,
|
| + MissBytes: &checker.Miss.Bytes,
|
| IsolateHash: []string{string(isolItem.Digest)},
|
| }
|
| if err := logStats(ctx, logger, start, end, archiveDetails); err != nil {
|
|
|