Skip to content

Commit

Permalink
Merge pull request #124 from draios/ignore_6.7
Browse files Browse the repository at this point in the history
chore: ignore kernel 6.7 on agent 12.19.0 and older
  • Loading branch information
iurly authored Feb 6, 2024
2 parents 7316226 + a5e1516 commit 31f6ec4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions agent_ignorelist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ matchers:
generic: ^(?P<major>[0-9])\.(?P<minor>[0-9]+)\..*

ignorelist:
- description: "Kernel 6.7 on agent <= 12.19.0"
probe_versions: [ 12.17.0, 12.17.1, 12.18.0, 12.19.0 ]
probe_kinds: [ kmod, legacy_ebpf ]
matcher: generic
skip_if: "{{ (major|int > 6) or (major|int == 6 and minor|int >= 7) }}"

- description: "[SMAGENT-6088] Kernel 6.6 on agent <= 12.17.1"
probe_versions: [ 12.15.0, 12.16.0, 12.16.1, 12.16.2, 12.16.3, 12.17.0, 12.17.1 ]
probe_kinds: [ kmod, legacy_ebpf ]
Expand Down

0 comments on commit 31f6ec4

Please sign in to comment.