Skip to content

Commit

Permalink
Rewrite the output of runtime plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
mtardy committed Apr 21, 2022
1 parent aa01b99 commit fbbbe02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/plugins/runtime/runtime.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type RuntimeBucket struct{}
func (n RuntimeBucket) Run() (bucket.Results, error) {
runtime := proc.GetContainerRuntime(0, 0)
res := bucket.NewResults(bucketName)
res.AddComment(fmt.Sprintf("Container runtime %q", runtime))
res.AddComment(fmt.Sprintf("The container runtime seems to be %s.", runtime))
return *res, nil
}

Expand Down

0 comments on commit fbbbe02

Please sign in to comment.