Skip to content

Commit 4594f5c

Browse files
committed
services/snapshots: include name of snapshotter in debug logs
- combine consecutive "WithField" calls to "WithFields", as multiple calls is known to be expensive. - include a "snapshotter" field in logs to allow correlating actions with specific snapshotters. Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 29ecab6 commit 4594f5c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

plugins/services/snapshots/service.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ func (s *service) Register(gs *grpc.Server) error {
7979
}
8080

8181
func (s *service) Prepare(ctx context.Context, pr *snapshotsapi.PrepareSnapshotRequest) (*snapshotsapi.PrepareSnapshotResponse, error) {
82-
log.G(ctx).WithField("parent", pr.Parent).WithField("key", pr.Key).Debugf("prepare snapshot")
82+
log.G(ctx).WithFields(log.Fields{"parent": pr.Parent, "key": pr.Key, "snapshotter": pr.Snapshotter}).Debugf("prepare snapshot")
8383
sn, err := s.getSnapshotter(pr.Snapshotter)
8484
if err != nil {
8585
return nil, err
@@ -100,7 +100,7 @@ func (s *service) Prepare(ctx context.Context, pr *snapshotsapi.PrepareSnapshotR
100100
}
101101

102102
func (s *service) View(ctx context.Context, pr *snapshotsapi.ViewSnapshotRequest) (*snapshotsapi.ViewSnapshotResponse, error) {
103-
log.G(ctx).WithField("parent", pr.Parent).WithField("key", pr.Key).Debugf("prepare view snapshot")
103+
log.G(ctx).WithFields(log.Fields{"parent": pr.Parent, "key": pr.Key, "snapshotter": pr.Snapshotter}).Debugf("prepare view snapshot")
104104
sn, err := s.getSnapshotter(pr.Snapshotter)
105105
if err != nil {
106106
return nil, err
@@ -119,7 +119,7 @@ func (s *service) View(ctx context.Context, pr *snapshotsapi.ViewSnapshotRequest
119119
}
120120

121121
func (s *service) Mounts(ctx context.Context, mr *snapshotsapi.MountsRequest) (*snapshotsapi.MountsResponse, error) {
122-
log.G(ctx).WithField("key", mr.Key).Debugf("get snapshot mounts")
122+
log.G(ctx).WithFields(log.Fields{"key": mr.Key, "snapshotter": mr.Snapshotter}).Debugf("get snapshot mounts")
123123
sn, err := s.getSnapshotter(mr.Snapshotter)
124124
if err != nil {
125125
return nil, err
@@ -135,7 +135,7 @@ func (s *service) Mounts(ctx context.Context, mr *snapshotsapi.MountsRequest) (*
135135
}
136136

137137
func (s *service) Commit(ctx context.Context, cr *snapshotsapi.CommitSnapshotRequest) (*ptypes.Empty, error) {
138-
log.G(ctx).WithField("key", cr.Key).WithField("name", cr.Name).Debugf("commit snapshot")
138+
log.G(ctx).WithFields(log.Fields{"key": cr.Key, "snapshotter": cr.Snapshotter, "name": cr.Name}).Debugf("commit snapshot")
139139
sn, err := s.getSnapshotter(cr.Snapshotter)
140140
if err != nil {
141141
return nil, err
@@ -153,7 +153,7 @@ func (s *service) Commit(ctx context.Context, cr *snapshotsapi.CommitSnapshotReq
153153
}
154154

155155
func (s *service) Remove(ctx context.Context, rr *snapshotsapi.RemoveSnapshotRequest) (*ptypes.Empty, error) {
156-
log.G(ctx).WithField("key", rr.Key).Debugf("remove snapshot")
156+
log.G(ctx).WithFields(log.Fields{"key": rr.Key, "snapshotter": rr.Snapshotter}).Debugf("remove snapshot")
157157
sn, err := s.getSnapshotter(rr.Snapshotter)
158158
if err != nil {
159159
return nil, err
@@ -167,7 +167,7 @@ func (s *service) Remove(ctx context.Context, rr *snapshotsapi.RemoveSnapshotReq
167167
}
168168

169169
func (s *service) Stat(ctx context.Context, sr *snapshotsapi.StatSnapshotRequest) (*snapshotsapi.StatSnapshotResponse, error) {
170-
log.G(ctx).WithField("key", sr.Key).Debugf("stat snapshot")
170+
log.G(ctx).WithFields(log.Fields{"key": sr.Key, "snapshotter": sr.Snapshotter}).Debugf("stat snapshot")
171171
sn, err := s.getSnapshotter(sr.Snapshotter)
172172
if err != nil {
173173
return nil, err
@@ -182,7 +182,7 @@ func (s *service) Stat(ctx context.Context, sr *snapshotsapi.StatSnapshotRequest
182182
}
183183

184184
func (s *service) Update(ctx context.Context, sr *snapshotsapi.UpdateSnapshotRequest) (*snapshotsapi.UpdateSnapshotResponse, error) {
185-
log.G(ctx).WithField("key", sr.Info.Name).Debugf("update snapshot")
185+
log.G(ctx).WithFields(log.Fields{"key": sr.Info.Name, "snapshotter": sr.Snapshotter}).Debugf("update snapshot")
186186
sn, err := s.getSnapshotter(sr.Snapshotter)
187187
if err != nil {
188188
return nil, err

0 commit comments

Comments
 (0)