Remote Monitoring
Use this when FlowLayer runs on another machine and your team needs live visibility.
Safe baseline
Section titled “Safe baseline”- run server with explicit bind and token
- expose access only through trusted network paths
- connect TUI from remote terminals with explicit
-addrand-token
Example:
flowlayer-server -c ./flowlayer.jsonc -s 127.0.0.1:6999 -token remote-dev-tokenflowlayer-client-tui -addr 127.0.0.1:6999 -token remote-dev-tokenSSH tunnel workflow
Section titled “SSH tunnel workflow”ssh -N -L 6999:127.0.0.1:6999 dev@remote-hostflowlayer-client-tui -addr 127.0.0.1:6999 -token remote-dev-tokenMonitoring checklist
Section titled “Monitoring checklist”- verify
/healthbefore opening TUI - verify expected services exist in initial snapshot
- use
get_logsreplay after network blips - rotate token if exposure scope changes
Boundaries
Section titled “Boundaries”- FlowLayer auth is session-level, not full network security
- do not treat session token as Internet-grade credential
See Remote Access and Session Token.