get_log_lines
Read every log line the service wrote under one trace id, in order.
Logread-onlyidempotentMCP tool
A trace id covers one request end to end or one pass of a background loop; the service answers it on any call that failed, and it is on every line in the log. This is how to find out what happened behind a failure, on whichever engine the call was made to.
Calling it#
curl -X POST http://127.0.0.1:8787/log.v1.LogService/GetLogLines \
-H 'Content-Type: application/json' \
-d '{
"traceId": "<traceId>"
}'komrad rpc get-log-lines \
--trace-id <string>{
"name": "get_log_lines",
"arguments": {
"traceId": "<traceId>"
}
}Offered by the komrad MCP server to orchestrator agents.
Request#
GetLogLinesRequest#
| Field | Type | Description |
|---|---|---|
traceId | string | The trace id a failed call answered with, or one list_recent_traces listed. required, at most 128 characters |