Skip to content
Download

Tools reference

All times use RFC 3339, for example 2026-09-08T09:00:00Z.

Search and filter log records.

Parameter Type Required Meaning
query string no Text to find in the log message.
severity string no One of TRACE, DEBUG, INFO, WARN, ERROR, FATAL.
start_time string no Start of the time range.
end_time string no End of the time range.
limit number no Records to return. Default 100, maximum 1000.

Read time-series metrics.

Parameter Type Required Meaning
name string no Metric name pattern.
start_time string yes Start of the time range.
end_time string yes End of the time range.

Search traces.

Parameter Type Required Meaning
service_name string no Filter by service.
operation_name string no Filter by span name.
start_time string no Start of the time range.
end_time string no End of the time range.
min_duration_ms number no Only traces at least this long.
limit number no Traces to return. Default 100.

Read one trace.

Parameter Type Required Meaning
trace_id string yes The trace ID.

Report the effective OTLP endpoints of the root receiver. The tool has no parameters. It reads the engine’s health endpoint and returns this JSON object.

Field Type Meaning
otlpGrpcPort number The effective gRPC port. Send gRPC telemetry to this port.
otlpHttpPort number The effective HTTP port. Send HTTP telemetry to this port.
otlpGrpcConfiguredPort number The gRPC port that the root asked for.
otlpHttpConfiguredPort number The HTTP port that the root asked for.
otlpGrpcPortConflict boolean true when the gRPC port was busy and the root moved to another port.
otlpHttpPortConflict boolean true when the HTTP port was busy and the root moved to another port.
grpcEndpoint string The gRPC address, for example http://127.0.0.1:14317.
httpEndpoint string The HTTP address, for example http://127.0.0.1:14318.

Call this tool before you configure an OTLP exporter. Do not assume the default ports. See Ports and the effective port.

  • “Query the logs for ERROR entries in the last hour and explain what happened.”
  • “Find the slowest traces from the last 24 hours and name the bottleneck span.”
  • “Get the trace abc123 and explain the span hierarchy.”
  • “Read loggerhead://stats and summarise what has been collected.”
  • “Call get_receiver_info and set OTEL_EXPORTER_OTLP_ENDPOINT to the gRPC address.”