Skip to main content
Observability in iii isn’t something you bolt onto each service. Every cross-worker call already flows through the engine, so the engine can trace and log the whole system end to end. In this chapter you open the console to see that, then, if you want, read the same data directly from the engine.

Open the console

The engine has been running since Chapter 1. Start the console, a browser UI for inspecting it:
Open it at http://127.0.0.1:3113/traces. Every worker you added is listed with the functions and triggers it registered. Navigate to the traces tab and run the below command to watch the invocations stream live:
Click any redirect to see a full waterfall of timed spans crossing from http into link and back: iii console Traces page showing redirect spans sorted by duration with the waterfall for a selected GET /s/:code trace You didn’t add a tracing library or thread a request ID between services to get this. iii project init added the observability worker to config.yaml, and from then on every request gets a trace and every Logger line is collected automatically, across workers. In iii end-to-end observability is an inherent property of the system.
observability emits OpenTelemetry. Its traces, metrics, and logs are emitted as OTel, so you aren’t locked into the console. You can point the worker at Honeycomb, Grafana, Datadog, or any other OTel-compatible backend. See the worker’s configuration on workers.iii.dev/workers/observability; its settings are managed at runtime through the configuration worker.
For most teams the console (or your own OTel backend) is all you need day to day.
The rest of this chapter is an optional deep dive on how to read the same logs and traces directly from the engine. You can jump to Ch. 3: Persist everything if you prefer.

Read the logs

Create some traffic:
Then check the logs:
The jq pipe filters the response down to the link resolved entries and keeps the parts that matter for this tutorial, try removing it to see all the information the iii engine can provide.
data is exactly what you passed to logger.info; the engine stores those fields as individual log attributes, so the jq above gathers everything except the OTel metadata keys. The trace_id ties the log to the trace it came from, which is where you look next.

Follow a redirect across workers

Everything that happens on a iii system has a trace. So the http requests have traces that cover the full execution context of the request. Grab the most recent redirect’s trace_id and walk the whole request as a tree. Capturing the id into a shell variable keeps this a single paste:
The jq pipe walks the nested roots tree, indenting each span by depth and printing its service_name and duration in milliseconds. You get the full path of one redirect, across two workers:
This shows the redirect arriving through /s/:code via the http worker’s Trigger, calling http::redirect in link, which then calls link::resolve in the link worker via the engine. The per-span timing shows where the request spends its time.
Worker spans export on a short delay, so a brand-new request’s trace can be missing or look truncated for a second or two. If you encounter this wait a few seconds and try again.
To compare many traces it’s possible to filter, list, and sort them in one operation. Here are the redirect spans sorted by duration, slowest first:
Each line pairs a duration with its trace_id, slowest first:
The slowest redirects rise to the top; open any one’s trace_id with engine::traces::tree to see which hop is responsible.

Conclusion

Linkly is now observable: the console shows every worker, trace, and log as it happens, and you can read the same data from the engine with iii trigger. The links are still kept only in memory, though, so restarting the engine clears them. Next, in Ch. 3: Persist everything, you move them into durable storage.