Monito CLI

session

View debug sessions — list sessions, view details with bug reports, and browse events.

session list

List debug sessions.

monito session list
monito session ls                         # alias
monito session list --limit 50            # show more
monito session list --search "login"      # search by title
monito session list --json

Displays: ID, Title, URL, Public status, Created time.

Default limit is 20.

session view

View session details including bug reports and event summary.

monito session view <id>
monito session view <id> --json

Shows session metadata, then:

  • Bug Reports: Each bug with title, severity, priority, and description
  • Events: Summary count by event type (Network, Console Log, Screenshot, etc.)

session events

List all events in a session, optionally filtered by type.

monito session events <id>
monito session events <id> --type network
monito session events <id> --type console
monito session events <id> --json
Filter TypeEvent Type
networkNetwork requests (method, URL, status)
consoleConsole log messages (severity, content)
screenshotScreenshots taken during the session
interactionUser interactions (clicks, inputs)
navigationPage navigations
websocketWebSocket messages

Each event shows timestamp, type, and a summary extracted from the event data.

On this page