付録C リダクション設定 YAML ファイルのオプション
RHEL 6.10、7.9、8.3 以降では、Insights クライアントは YAML ファイルを使用してリダクションを設定します。以前のリリースでは、remove.conf
ファイルでリダクションを制御します。
C.1. リダクション設定 YAML ファイルのオプション
RHEL 6.10、7.9、8.3 以降では、Insights クライアントは YAML ファイルを使用してリダクションを設定します。以前のリリースでは、remove.conf
ファイルでリダクションを制御します。
コンテンツ | 詳細 |
---|---|
# file-redaction.yaml --- | ファイル名を含むコメント (任意)。 |
# Exclude the entire output of commands # Specify the full command path or the symbolic name in .cache.json commands: - /bin/rpm -qa - /bin/ls - ethtool_i |
|
# Exclude the entire output of files # Specify the full filename path or the symbolic name in .cache.json files: - /etc/audit/auditd.conf - cluster_conf | 指定されたファイルは、ファイル名とファイルの内容がアーカイブファイルから除外されます。
|
コンテンツ | 詳細 |
---|---|
# file-content-redaction.yaml --- | ファイル名を含むコメント (任意)。 |
# Pattern redaction per matching line # Lines that match a pattern are excluded from files and command output. # Patterns are processed in the order that they are listed. # Example patterns: - "a_string_1" - "a_string_2" |
パターンが |
# # Regular expression pattern redaction per line # Patterns with regular expressions (regex) are wrapped with "regex:" # Example patterns: regex: - "abc.*def" - "localhost[[:digit:]]" # |
正規表現は |
# Lines matching these regular expressions are excluded # from output. patterns: regex: - "*\.conf" - "^include" |
この例では、文字列に |
# Replace keywords in files and command output with generic identifiers by the Python soscleaner module keywords: - "1.1.1.1" - "My Name" - "a_name" |
たとえば、
|