forked from p15670423/monkey
Island: Add the new AgentLogs endpoint to the island
This commit is contained in:
parent
543c063f7b
commit
89ae9824d0
|
@ -14,6 +14,7 @@ from monkey_island.cc.resources import (
|
||||||
AgentBinaries,
|
AgentBinaries,
|
||||||
AgentConfiguration,
|
AgentConfiguration,
|
||||||
AgentEvents,
|
AgentEvents,
|
||||||
|
AgentLogs,
|
||||||
Agents,
|
Agents,
|
||||||
AgentSignals,
|
AgentSignals,
|
||||||
ClearSimulationData,
|
ClearSimulationData,
|
||||||
|
@ -185,6 +186,7 @@ def init_restful_endpoints(api: FlaskDIWrapper):
|
||||||
api.add_resource(ZeroTrustFindingEvent)
|
api.add_resource(ZeroTrustFindingEvent)
|
||||||
api.add_resource(TelemetryFeed)
|
api.add_resource(TelemetryFeed)
|
||||||
api.add_resource(Log)
|
api.add_resource(Log)
|
||||||
|
api.add_resource(AgentLogs)
|
||||||
api.add_resource(IslandLog)
|
api.add_resource(IslandLog)
|
||||||
api.add_resource(IPAddresses)
|
api.add_resource(IPAddresses)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue