Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions agent_ignorelist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
matchers:
redhat: ^(?P<version>[0-9]\.[0-9]+\.[0-9]+)-(?P<rpmrelver>[0-9]+)(?P<rpmrelpatch>(\.[0-9]+)*)\.(?P<rhel>el.*)\.(?P<arch>[a-z0-9-_]+)$
generic: ^(?P<major>[0-9])\.(?P<minor>[0-9]+)\..*
generic_aarch64: ^(?P<major>[0-9])\.(?P<minor>[0-9]+)\..*\.aarch64$

ignorelist:
- description: "Kernel 6.7 on agent <= 12.19.0"
Expand Down Expand Up @@ -88,3 +89,9 @@ ignorelist:
probe_kinds: [ legacy_ebpf ]
matcher: generic
skip_if: "{{ major|int == 6 and minor|int >= 11 }}"

- description: "kernel 6.12...aarch64 error: unterminated function-like macro invocation time.tv_nsec = _READ((inode->i_ctime_nsec);"
probe_versions: [ 13.5.0 ]
probe_kinds: [ legacy_ebpf ]
matcher: generic_aarch64
skip_if: "{{ (major|int > 6) or (major|int == 6 and minor|int >= 12) }}"
2 changes: 1 addition & 1 deletion probe_builder/builder/ignorelist.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "object",
"description": "list of matches",
"patternProperties": {
"^[a-z_]*$": {
"^[a-z][a-z0-9_]*$": {
"type": "string"
}
},
Expand Down