Skip to content

Commit

Permalink
update endpoint to match one in ns_server
Browse files Browse the repository at this point in the history
  • Loading branch information
avsej committed Jan 21, 2025
1 parent 305abcf commit 95d116d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client-ruby/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def export
class Reporter
attr_accessor :ws, :store

def initialize(store, url: "ws://localhost:8091/app_telemetry")
def initialize(store, url: "ws://localhost:8091/_appTelemetry")
@ws = WebSocket::Client::Simple.connect(url)
@store = store
end
Expand Down
2 changes: 1 addition & 1 deletion server-python/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ async def init_app():
store = TelemetryStore()
app = web.Application()
app.router.add_get('/metrics', lambda request: metrics(request, store))
app.router.add_get('/app_telemetry', lambda request: websocket_handler(request, store))
app.router.add_get('/_appTelemetry', lambda request: websocket_handler(request, store))
app.router.add_get('/echo', lambda request: echo_handler(request))
return app

Expand Down

0 comments on commit 95d116d

Please sign in to comment.