Suppress
Suppress Commands - Manage match suppressions.
Allows you to suppress false positive matches that the stitcher creates.
Functions
suppress()
Manage match suppressions.
Suppressions prevent the stitcher from creating specific matches that you've identified as false positives.
suppress_add(source_pattern, target_pattern, reason, created_by, expires_days, config_path)
Add a new suppression rule.
Patterns use glob syntax
- matches any characters ? matches single character
Examples: jnkn suppress add "env:_ID" "infra:" -r "ID fields are generic" jnkn suppress add "env:HOST" "infra:*" -r "HOST is generic" -e 30
suppress_list(config_path, include_expired, as_json)
List all suppressions.
Examples: jnkn suppress list jnkn suppress list --include-expired jnkn suppress list --json
suppress_remove(identifier, config_path)
Remove a suppression by ID or index.
Examples: jnkn suppress remove abc123 jnkn suppress remove 1
suppress_test(source_id, target_id, config_path)
Test if a source/target pair would be suppressed.
Examples: jnkn suppress test env:USER_ID infra:main