Skip to content

Commit

Permalink
Island: Remove the "/api/telemetry-feed" endpoint
Browse files Browse the repository at this point in the history
Resolves #2502
  • Loading branch information
mssalvatore committed Oct 27, 2022
1 parent f394b67 commit b082413
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 83 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ Changelog](https://keepachangelog.com/en/1.0.0/).
- "POST /api/pba/upload/<string:target_os>?load=<string:filename>" endpoint. #2442
- "POST /api/pba/upload/<string:target_os>?restore=<string:filename>" endpoint. #2442
- The TelemetryLog component from the Infection Map page. #2500
- "GET /api/telemetry-feed" endpoint. #2502

### Fixed
- A bug in network map page that caused delay of telemetry log loading. #1545
Expand Down
2 changes: 0 additions & 2 deletions monkey/monkey_island/cc/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
from monkey_island.cc.resources.root import Root
from monkey_island.cc.resources.security_report import SecurityReport
from monkey_island.cc.resources.telemetry import Telemetry
from monkey_island.cc.resources.telemetry_feed import TelemetryFeed
from monkey_island.cc.resources.version import Version
from monkey_island.cc.server_utils.consts import MONKEY_ISLAND_ABS_PATH
from monkey_island.cc.services.representations import output_json
Expand Down Expand Up @@ -171,7 +170,6 @@ def init_restful_endpoints(api: FlaskDIWrapper):
api.add_resource(ManualExploitation)
api.add_resource(MonkeyExploitation)

api.add_resource(TelemetryFeed)
api.add_resource(Log)
api.add_resource(AgentLogs)
api.add_resource(IslandLog)
Expand Down
81 changes: 0 additions & 81 deletions monkey/monkey_island/cc/resources/telemetry_feed.py

This file was deleted.

0 comments on commit b082413

Please sign in to comment.