CoreTerminateCausality
A polling wrapper script; Terminate a process tree by its causality ID.
python · Core
Details
| ID | CoreTerminateCausality |
|---|---|
| Language | python |
| From Version | 6.1.0 |
| Docker Image | demisto/python3:3.12.13.10116658 |
| Tags | Utilities |
import demistomock as demisto # noqa: F401 from CommonServerPython import * # noqa: F401 def main(): args = demisto.args() try: return_results(execute_polling_command("core-terminate-causality", args)) except Exception as e: return_error(f"Failed to execute script.\nError:\n{e!s}") if __name__ in ("__main__", "__builtin__", "builtins"): main()