github.com/cnboonhan/delve@v0.0.0-20230908061759-363f2388c2fb/Documentation/usage/dlv_replay.md (about)

     1  ## dlv replay
     2  
     3  Replays a rr trace.
     4  
     5  ### Synopsis
     6  
     7  Replays a rr trace.
     8  
     9  The replay command will open a trace generated by mozilla rr. Mozilla rr must be installed:
    10  https://github.com/mozilla/rr
    11  			
    12  
    13  ```
    14  dlv replay [trace directory] [flags]
    15  ```
    16  
    17  ### Options
    18  
    19  ```
    20    -h, --help            help for replay
    21    -p, --onprocess int   Pass onprocess pid to rr.
    22  ```
    23  
    24  ### Options inherited from parent commands
    25  
    26  ```
    27        --accept-multiclient               Allows a headless server to accept multiple client connections via JSON-RPC or DAP.
    28        --allow-non-terminal-interactive   Allows interactive sessions of Delve that don't have a terminal as stdin, stdout and stderr
    29        --api-version int                  Selects JSON-RPC API version when headless. New clients should use v2. Can be reset via RPCServer.SetApiVersion. See Documentation/api/json-rpc/README.md. (default 1)
    30        --check-go-version                 Exits if the version of Go in use is not compatible (too old or too new) with the version of Delve. (default true)
    31        --headless                         Run debug server only, in headless mode. Server will accept both JSON-RPC or DAP client connections.
    32        --init string                      Init file, executed by the terminal client.
    33    -l, --listen string                    Debugging server listen address. (default "127.0.0.1:0")
    34        --log                              Enable debugging server logging.
    35        --log-dest string                  Writes logs to the specified file or file descriptor (see 'dlv help log').
    36        --log-output string                Comma separated list of components that should produce debug output (see 'dlv help log')
    37        --only-same-user                   Only connections from the same user that started this instance of Delve are allowed to connect. (default true)
    38  ```
    39  
    40  ### SEE ALSO
    41  
    42  * [dlv](dlv.md)	 - Delve is a debugger for the Go programming language.
    43