dbg: debug applications remotely
This package provides a server, client and UI for remotely debugging Racket applications.
1 Usage
Call serve before starting your app and use the returned function to stop the server when your app shuts down.
(require (prefix-in dbg: debugging/server)) (define dbg:stop (dbg:serve))
Then use the UI to interact with the server (raco dbg from the dbg-ui package). If youβre feeling particularly adventurous, you can use the programmatic API (Client) instead.
1.1 Port Forwarding
The server listens on the loopback interface by default, so itβs not exposed to the internet. While you can tell it to listen on a different interface, that would likely be insecure. Instead, when you need to debug a remote server, you should use port forwarding. Hereβs how you would forward port 9011 using the ssh command:
ssh -L 9011:127.0.0.1:9011 example.com |
2 Reference
The dbg package provides two top-level modules, representing the Server and Client APIs.
2.1 Server
(require debugging/server) | package: dbg |
procedure
host : string? = "127.0.0.1" port : (integer-in 0 65535) = 9011
The server replaces the current-custodian in order to aid with profiling, so the earlier you start the server during your appβs boot process, the better.
2.2 Client
(require debugging/client) | package: dbg |
The client API may change between versions without warning.
parameter
(current-client) β client?
(current-client client) β void? client : client?
procedure
host : string? = "127.0.0.1" port : (integer-in 0 65535) = 9011
procedure
(connected? [c]) β boolean?
c : client? = (current-client)
procedure
(disconnect! [c]) β void?
c : client? = (current-client)
procedure
(reconnect! [c]) β void?
c : client? = (current-client)
procedure
c : client? = (current-client)
procedure
(get-memory-use [c]) β exact-positive-integer?
c : client? = (current-client)
procedure
(get-object-counts [c])
β (listof (cons/c string? (cons/c integer? integer?))) c : client? = (current-client)
procedure
(start-profile [c delay-ms errortrace?]) β void?
c : client? = (current-client) delay-ms : exact-nonnegative-integer? = 1 errortrace? : boolean? = #f
The errortrace? argument controls whether or not errortrace is used to construct call stacks. If errortrace was not enabled before starting the process, setting this value to #t will produce empty profiles.
procedure
(stop-profile [c]) β any/c
c : client? = (current-client)
procedure
(get-profile [c]) β any/c
c : client? = (current-client)