Reporting & events¶
Reporting¶
Jobs¶
Reports¶
Report Schedules¶
Report Templates¶
Core Service Types¶
Detected Core Services¶
Support Bundle Requests¶
System Events¶
Events¶
- class illumio.Event[source]¶
Represents an event object in the PCE.
NOTE: Events are read-only via the PCE API.
See https://docs.illumio.com/core/21.5/Content/Guides/rest-api/pce-management/events.htm
- Usage:
>>> import illumio >>> pce = illumio.PolicyComputeEngine('pce.company.com', port=443, org_id=1) >>> pce.set_credentials('api_key', 'api_secret') >>> events = pce.events.get(params={'max_results': 5}) >>> events [ Event( href="/orgs/1/events/3764a636-4846-492f-a090-ae96cf33bddf", event_type="system_task.expire_service_account_api_keys", timestamp="2022-08-17T22:12:37.410Z", pce_fqdn="pce.company.com", severity="critical", status="success", created_by={"system": {}}, action=ActionEvent( uuid="1ebad14e-bd87-42b1-ae9a-22433951fbd3", src_ip="FILTERED", ... ), resource_changes=[], notifications=[], ), ... ]