Start log-probe ingestion server
probe_server_startStarts the local log-ingestion server for structured log events, initializing SQLite storage on first use. Call before instrumenting code or running executions.
Instructions
Starts the local HTTP log-ingestion server that instrumented code sends structured log events to. Must be called before any code can be instrumented or executions run. Also lazily opens the .log-probe/ SQLite storage for this project on first call.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| host | No | Bind host, default "127.0.0.1". Only change for containerized setups. | |
| port | No | Explicit port to bind. If omitted, tries 41414-41419 then an OS-assigned port. | |
| dataDir | No | Absolute path to the project root this debugging session is for. Determines where .log-probe/ (SQLite DB + exported knowledge base) is created. Defaults to LOG_PROBE_DATA_DIR env var, then this server process's cwd. Only meaningful on the first tool call of the process. |