Skip to content

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
thampiotr committed Dec 4, 2023
1 parent 5f12af2 commit 6ea8d33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions component/pyroscope/ebpf/ebpf_placeholder.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build !linux || (linux && !arm64 && !amd64)
//go:build !(linux && (arm64 || amd64))

package ebpf

Expand Down Expand Up @@ -26,7 +26,7 @@ type Component struct {
}

func New(opts component.Options, args Arguments) (component.Component, error) {
level.Warn(opts.Logger).Log("msg", "the pyroscope.ebpf component only works on linux; enabling it otherwise will do nothing")
level.Warn(opts.Logger).Log("msg", "the pyroscope.ebpf component only works on ARM64 and AMD64 Linux platforms; enabling it otherwise will do nothing")
return &Component{}, nil
}

Expand Down

0 comments on commit 6ea8d33

Please sign in to comment.