File tree 2 files changed +6
-2
lines changed
src/wazuh_testing/modules/fim
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 6
6
SYSCHECK_DEBUG = 'syscheck.debug'
7
7
SYMLINK_SCAN_INTERVAL = 'syscheck.symlink_scan_interval'
8
8
FILE_MAX_SIZE = 'syscheck.file_max_size'
9
+ RT_DELAY = 'syscheck.rt_delay'
9
10
10
11
# File names
11
12
LAST_ENTRY_FILE = 'last-entry.gz'
Original file line number Diff line number Diff line change 20
20
SENDING_FIM_EVENT = r'.*Sending FIM event: .*"type":"event".*'
21
21
EVENT_TYPE_ADDED = r'.*Sending FIM event: .*"type":"added".*'
22
22
EVENT_TYPE_MODIFIED = r'.*Sending FIM event: .*"type":"modified".*'
23
+ EVENT_TYPE_REPORT_CHANGES = r".*Sending FIM event: .*\"content_changes\":\"([^\"]*)\".*"
24
+ EVENT_UNABLE_DIFF = r".*Sending FIM event: .*\"content_changes\":\"(Unable to calculate diff due to [^\"]* limit has been reached.)\".*"
23
25
EVENT_TYPE_DELETED = r'.*Sending FIM event: .*"type":"deleted".*'
24
26
FIM_EVENT_JSON = r'.*Sending FIM event: (.+)$'
25
27
FIM_EVENT_RESTRICT = r".*Ignoring entry '(.*?)' due to restriction '.*?'"
40
42
WIN_CONVERT_FOLDER = r".*fim_adjust_path.*Convert '(.*) to '(.*)' to process the FIM events."
41
43
42
44
DIFF_MAXIMUM_FILE_SIZE = r".*Maximum file size limit to generate diff information configured to \'(\d+) KB\'.*"
43
- DISK_QUOTA_LIMIT_CONFIGURED_VALUE = r'.*Maximum disk quota size limit configured to \'(\d+) KB\'.*'
44
- FILE_EXCEEDS_DISK_QUOTA = r'.*The (.*) of the file size \'(.*)\' exceeds the disk_quota.*'
45
+ DIFF_DISK_QUOTA_LIMIT = r'.*Maximum disk quota size limit configured to \'(\d+) KB\'.*'
46
+ DISK_QUOTA_LIMIT_REACHED = r'.*The (.*) of the file size \'(.*)\' exceeds the disk_quota.*'
45
47
FILE_SIZE_LIMIT_REACHED = r'.*File \'(.*)\' is too big for configured maximum size to perform diff operation\.'
46
48
DIFF_FOLDER_DELETED = r'.*Folder \'(.*)\' has been deleted.*'
47
49
50
52
ERROR_MSG_DISK_QUOTA_LIMIT = 'Did not receive "Maximum disk quota size limit configured to \' ... KB\' ." event'
51
53
ERROR_MSG_FIM_EVENT_NOT_DETECTED = 'Did not receive expected "Sending FIM event: ..." event.'
52
54
ERROR_MSG_FILE_LIMIT_REACHED = 'Did not receive "File ... is too big ... to perform diff operation" event.'
55
+ ERROR_MSG_REPORT_CHANGES_EVENT_NOT_DETECTED = 'Did not receive event with \' content_changes\' field.'
53
56
ERROR_MSG_FOLDER_DELETED = 'Did not receive expected "Folder ... has been deleted." event.'
You can’t perform that action at this time.
0 commit comments