You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* initial commit
* README changes
* Added support for devices last run time,
devices max fetch
* Version bump and RN
* Change unit test for new changes.
Parse event type correctly.
Make changes to comply with dict events instead of list events.
* Changes to events from list to dict.
* Remove redundant after AQL date filter
* Alerts and Activity default max = 5k
Devices default max = 10k
* Remove redundant description in yml.
* Updated the README
* fix flake8 long line issues
* Change param name to snake_case.
No need to demisto.setLastRun multiple times.
* Apply suggestions from code review
Tech doc review changes.
Co-authored-by: ShirleyDenkberg <[email protected]>
* update RN.
---------
Co-authored-by: ShirleyDenkberg <[email protected]>
Copy file name to clipboardExpand all lines: Packs/Armis/Integrations/ArmisEventCollector/ArmisEventCollector.yml
+31-8
Original file line number
Diff line number
Diff line change
@@ -16,30 +16,53 @@ configuration:
16
16
hiddenusername: true
17
17
type: 9
18
18
section: Connect
19
-
- display: Number of events to fetch per type
19
+
- display: Maximum number of events per fetch
20
20
name: max_fetch
21
-
additionalinfo: The maximum number of events to fetch per event type.
21
+
additionalinfo: Alerts and activity events.
22
22
type: 0
23
-
defaultvalue: 1000
23
+
defaultvalue: 5000
24
24
section: Collect
25
+
- display: Maximum number of device events per fetch
26
+
name: devices_max_fetch
27
+
type: 0
28
+
section: Collect
29
+
additionalinfo: Devices events.
30
+
defaultvalue: 10000
25
31
- display: Trust any certificate (not secure)
26
32
name: insecure
27
33
type: 8
28
34
section: Connect
29
35
- display: Use system proxy settings
30
36
name: proxy
31
-
type: 8
32
37
section: Connect
38
+
type: 8
33
39
- display: Event types to fetch
34
40
name: event_types_to_fetch
35
41
section: Collect
36
42
required: true
37
43
type: 16
38
-
defaultvalue: Alerts,Threat activities
44
+
defaultvalue: Alerts,Devices,Activities
39
45
options:
40
46
- Alerts
41
-
- Threat activities
42
-
description: Collects alerts & threat activities from Armis resources.
47
+
- Devices
48
+
- Activities
49
+
- section: Collect
50
+
advanced: true
51
+
display: Events Fetch Interval
52
+
additionalinfo: Alerts and activity events.
53
+
name: eventFetchInterval
54
+
defaultvalue: "1"
55
+
type: 19
56
+
required: false
57
+
- section: Collect
58
+
advanced: true
59
+
display: Device Fetch Interval
60
+
additionalinfo: Time between fetch of devices (for example 12 hours, 60 minutes, etc.).
61
+
name: deviceFetchInterval
62
+
defaultvalue: "24 hours"
63
+
type: 0
64
+
required: false
65
+
description: Collects alerts, devices and activities from Armis resources.
43
66
display: Armis Event Collector
44
67
name: ArmisEventCollector
45
68
supportlevelheader: xsoar
@@ -54,7 +77,7 @@ script:
54
77
- 'true'
55
78
- 'false'
56
79
required: true
57
-
- description: The date from which to fetch events. The format should be YYYY-MM-DD or YYYY-MM-DDT:HH:MM:SS. If not specified, the current date will be used.
80
+
- description: The date from which to fetch events. The format should be '20 minutes', '1 hour' or '2 days'.
58
81
name: from_date
59
82
required: false
60
83
description: Manual command to fetch and display events. This command is used for developing/debugging and is to be used with caution, as it can create events, leading to events duplication and exceeding the API request limitation.
0 commit comments