Skip to content

Commit

Permalink
Merge pull request #4626 from parca-dev/python-exclude
Browse files Browse the repository at this point in the history
pkg/query: Add more python excludes
  • Loading branch information
brancz authored May 14, 2024
2 parents 6fb2ee4 + 68dcbe5 commit f01a05c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/query/columnquery.go
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ func FilterProfileData(
interpretedOnly := false
if runtimeFilter != nil {
if !runtimeFilter.ShowPython {
binariesToExclude = append(binariesToExclude, []byte("libpython"))
binariesToExclude = append(binariesToExclude, []byte("libpython"), []byte("python3"))
}
if !runtimeFilter.ShowRuby {
binariesToExclude = append(binariesToExclude, []byte("libruby"))
Expand Down

0 comments on commit f01a05c

Please sign in to comment.