A collection of QRadar Universal Cloud REST API connectors for IBM Guardium Exposure Manager (GEM).
| Connector | Folder | Description |
|---|---|---|
| Open Issues + Details | GEM_QRadar_UCC/ |
Retrieves open issues and their full details on a daily schedule |
| Activity Log | GEM_QRadar_Activity/ |
Retrieves activity log entries on a rolling 10-minute schedule |
| Combined — Issues + Activity Log | GEM_QRadar_issue_activity_logs/ |
Single log source combining both of the above |
GEM_QRADAR_UCC/
├── GEM_QRadar_UCC/ # Connector 1 — Open Issues + Details
│ ├── GEM-Workflow.xml # Workflow definition
│ ├── GEM-WorkflowParameterValues.xml # Parameter values template
│ └── GEM-LogSourceExtension.xml # QRadar Log Source Extension (LSX)
├── GEM_QRadar_Activity/ # Connector 2 — Activity Log
│ ├── GEM-ActivityLog-Workflow.xml # Workflow definition
│ ├── GEM-ActivityLog-WorkflowParameterValues.xml # Parameter values template
│ ├── GEM-ActivityLog-LogSourceExtension.xml # QRadar Log Source Extension (LSX)
│ ├── README.md # Activity Log connector documentation
│ └── examples/
│ ├── example_curl.txt # Reference curl command
│ └── activity_result.json # Sample API response
├── GEM_QRadar_issue_activity_logs/ # Connector 3 — Combined (Issues + Activity Log)
│ ├── GEM-Combined-Workflow.xml # Combined workflow definition
│ ├── GEM-Combined-WorkflowParameterValues.xml # Parameter values template
│ ├── GEM-Combined-LogSourceExtension.xml # QRadar Log Source Extension (LSX)
│ ├── GEM-Combined-LogSourceExtension-FieldMapping.md # CEP field mapping reference
│ └── README.md # Combined connector documentation
├── examples/
│ ├── issue.json # Sample GEM API issues-list response
│ └── issue_detail.json # Sample GEM API issue-detail response
├── workflows/
│ ├── Workflow-v2.xsd # QRadar workflow XML schema
│ └── WorkflowParameterValues-v2.xsd # QRadar parameter values XML schema
├── prerequisites.txt # API endpoint reference notes
└── README.md # This file
Current version: 1.2
Runs on a configurable schedule (minimum once per day) and performs the following for each execution:
GET /api/v1/issues with pagination (20 issues per page) to retrieve all open issues detected during that window.GET /api/v1/issues/{issue_id}/details to fetch the enriched detail record.Files: GEM_QRadar_UCC/
Current version: 1.1
Runs on a configurable recurring schedule (default: every 10 minutes) and performs the following for each execution:
[now - recurrence_minutes, now].POST /api/v3/reports/run with pagination (default: 500 records per page) for the Activity Log report.Files: GEM_QRadar_Activity/ — see GEM_QRadar_Activity/README.md for full documentation.
Current version: 1.0
Combines Connector 1 and Connector 2 into a single log source — one set of credentials, one recurrence schedule, one Log Source Extension. Each run executes both sections in sequence:
recurrence_minutes window logic as Connector 2.The LSX uses two match-group elements (device-type-id 4015 by default but after creating the logsource, change it to your logsource id) to parse the two mutually exclusive event shapes. Events are disambiguated structurally: issue events contain issue_id; activity log events contain numeric string key "1".
Files: GEM_QRadar_issue_activity_logs/ — see GEM_QRadar_issue_activity_logs/README.md for full documentation.
| Requirement | Details |
|---|---|
| QRadar version | 7.4.x or later with Universal Cloud REST API protocol support |
| GEM instance | Accessible over HTTPS from the QRadar console / managed host |
| GEM API credentials | An API key and API secret with read access to Issues and Activity Log |
All connectors use HTTP Basic Authentication. The credential string api_key:api_secret is assembled at runtime and base64-encoded inline:
authorization: Basic <base64(api_key:api_secret)>
No pre-encoded value is stored. Credential rotation only requires updating the two parameter values on the log source.
Workflow XML files conform to the QRadar Universal Cloud REST API V2 schemas in workflows/:
| Schema file | Applies to |
|---|---|
workflows/Workflow-v2.xsd |
All *-Workflow.xml files |
workflows/WorkflowParameterValues-v2.xsd |
All *-WorkflowParameterValues.xml files |
| Version | Date | Description |
|---|---|---|
| 1.1 | 2026-08-01 | Initial release — paginated issue list retrieval + per-issue detail fetch |
| 1.2 | 2026-08-01 | Bug fix: date_filter query parameter was manually percent-encoded causing double-encoding and HTTP 500. Fixed by using plain XML-escaped JSON. |
| Version | Date | Description |
|---|---|---|
| 1.0 | 2026-08-01 | Initial release — paginated activity log retrieval with rolling 10-minute date window |
| 1.1 | 2026-08-01 | Bug fix: gem_host changed to hostname-only (no scheme). Resolves Client Protocol Exception from pre-flight test elements. |
| Version | Date | Description |
|---|---|---|
| 1.0 | 2026-08-02 | Initial release — combined workflow and LSX for Issues + Activity Log under a single QRadar log source. LSX uses device-type-id 4015 (Guardium Exposure Manager Issues and Activities). |