Island: Add the new AgentLogs endpoint to the island

This commit is contained in:
Ilija Lazoroski 2022-09-28 14:53:24 +02:00
parent 543c063f7b
commit 89ae9824d0
1 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,7 @@ from monkey_island.cc.resources import (
AgentBinaries,
AgentConfiguration,
AgentEvents,
AgentLogs,
Agents,
AgentSignals,
ClearSimulationData,
@ -185,6 +186,7 @@ def init_restful_endpoints(api: FlaskDIWrapper):
api.add_resource(ZeroTrustFindingEvent)
api.add_resource(TelemetryFeed)
api.add_resource(Log)
api.add_resource(AgentLogs)
api.add_resource(IslandLog)
api.add_resource(IPAddresses)