This is an automated email from the ASF dual-hosted git repository.
liuhan pushed a commit to branch tmp_disable_reading
in repository https://gitbox.apache.org/repos/asf/skywalking-rover.git
The following commit(s) were added to refs/heads/tmp_disable_reading by this
push:
new 2964dae update
2964dae is described below
commit 2964dae5c706cdba312a81c53dffec40c7509b32
Author: mrproliu <[email protected]>
AuthorDate: Sat Dec 21 14:48:39 2024 +0800
update
---
pkg/tools/btf/queue.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg/tools/btf/queue.go b/pkg/tools/btf/queue.go
index dc687ff..c07a15c 100644
--- a/pkg/tools/btf/queue.go
+++ b/pkg/tools/btf/queue.go
@@ -143,7 +143,7 @@ func (r *ringBufReader) Read() ([]byte, error) {
if err != nil {
return nil, err
}
- log.Infof("ringbuf read of (%s): %d", r.name, read.Remaining)
+ log.Infof("ringbuf read of (%s): %d/%d", r.name, read.Remaining,
r.reader.BufferSize())
return read.RawSample, nil
}