Browse: 🏠 · Solutions · Connectors · Methods · Tables · Content · Parsers · ASIM Parsers · ASIM Products · 📊
Queries the argsentdc_CL custom table (populated by the CCP data connector) for recent alerts and creates corresponding Microsoft Sentinel incidents.
| Attribute | Value |
|---|---|
| Type | Playbook |
| Solution | Check Point Cyberint Alerts |
| Source | View on GitHub |
This content item queries data from the following tables:
| Table | Transformations | Ingestion API | Lake-Only |
|---|---|---|---|
argsentdc_CL |
? | ✓ | ? |
📄 Source: Sync/CPEM_InboundSync/readme.md
This playbook polls Argos for recently modified alerts and writes updated records to the argsentdc_CL custom Log Analytics table. It complements the CCP data connector which only ingests new alerts (using created_date). The Importer catches status changes, closures, and other alert updates using the modification_date filter.
Flow:
1. Runs on a configurable recurrence interval (default: 10 minutes).
2. Calls Check_Point_EM_Base to retrieve API credentials.
3. Calculates the polling time window (last N minutes) as Unix timestamps.
4. Polls alerts API with modification_date filter.
5. For each modified alert, writes the updated record to the custom table via the Data Collection API.
6. Tracks success/error counts per run.
| Parameter | Required | Description |
|---|---|---|
| PlaybookName | No | Name of the Logic App (default: Check_Point_EM_Importer) |
| Check_Point_EM_Base_PlaybookName | No | Name of the base playbook (default: Check_Point_EM_Base) |
| PollingIntervalMinutes | No | Poll interval in minutes (default: 10) |
| DataCollectionEndpoint | Yes | DCE URL from the CCP connector deployment |
| DataCollectionRuleImmutableId | Yes | DCR immutable ID from the CCP connector deployment |
If the same alert appears in both the CCP connector (new) and Importer (modified) within the same window, the table will have two rows with the same ref_id. This is expected — analytics rules should use arg_max(TimeGenerated, *) by ref_id to get the latest state.
| Action | Endpoint |
|---|---|
| Poll modified alerts | POST {ArgosBaseUrl} with modification_date filter |
| Write to custom table | POST {DCE}/dataCollectionRules/{dcr_id}/streams/Custom-argsentdc_CL |
Browse: 🏠 · Solutions · Connectors · Methods · Tables · Content · Parsers · ASIM Parsers · ASIM Products · 📊