QRadarPrintEvents
This script prints the events fetched from the offense in a table format.
- Type
- python
- Pack
- QRadar
Source
import json
import demistomock as demisto # noqa: F401
from CommonServerPython import * # noqa: F401
MAX_EVENTS = 10
def main():
try:
incident = demisto.incident()
events = incident.get("CustomFields", {}).get("events", {})
if not events:
return CommandResults()
title = f"Offense Events (Showing first {MAX_EVENTS})"
if isinstance(events, list):
events_arr = []
for event in events:
events_arr.append(json.loads(event))
markdown = tableToMarkdown(title, events_arr[:MAX_EVENTS], headers=events_arr[0].keys())
else:
markdown = tableToMarkdown(title, json.loads(events)[:MAX_EVENTS])
return CommandResults(readable_output=markdown)
except Exception as exp:
return_error("could not parse QRadar events", error=exp)
if __name__ in ("__main__", "__builtin__", "builtins"):
return_results(main())
README
This script prints the events fetched from the offense in a table format.
Script Data
| Name | Description |
|---|---|
| Script Type | python3 |
| Tags | dynamic-section |
| Cortex XSOAR Version | 6.0.0 |
Inputs
There are no inputs for this script.
Outputs
There are no outputs for this script.