SquidSonar is an embeddable Phoenix LiveView operator dashboard for applications that run Squidie workflows.
Mount it inside a Phoenix host application to inspect recent runs, filter by status, search runtime metadata, and open detail pages with the workflow graph, diagnosis, attempt counts, history counts, and last error information. It also exposes Squidie control operations such as cancel, resume, approval, rejection, replay, and runtime-spec starts when the host application wires the required operator context.
SquidSonar is distributed as an embeddable library, not a standalone service. A host Phoenix application owns authentication, authorization, deployment, endpoint configuration, and the Squidie runtime. SquidSonar contributes the router macro, LiveViews, static assets, and a bounded operator surface over Squidie public APIs.
SquidSonar interacts with Squidie through:
Squidie.list_runs/2Squidie.inspect_run/2Squidie.inspect_run_graph/2Squidie.explain_run/2
Squidie.cancel/2- Cancel running workflowsSquidie.resume/3- Resume paused workflowsSquidie.approve/3- Approve manual approval stepsSquidie.reject/3- Reject manual approval stepsSquidie.replay/2- Replay completed workflowsSquidie.start/3- Start a run from a host-provided workflow moduleSquidie.start_spec/3- Start a run from a host-provided runtime spec
Host applications still own workers, queue delivery, scheduler setup, and backend leasing or fencing. When a Squidie host uses Bedrock or another delivery backend, that adapter remains part of the host application, not SquidSonar.
Phoenix Host Application
|
+-- Squidie runtime
| +-- workers
| +-- scheduler and delivery backend
| +-- lease or fencing adapter when needed
|
+-- SquidSonar
+-- router macro
+-- operator LiveViews
+-- embedded assets
+-- Squidie inspection and control API client
The UI includes:
- Recent workflow runs sorted by update time
- Status counts and filters
- Search across workflow, trigger, step, status, and run ID
- Page size controls and pagination
- Run detail pages with diagnosis, history counts, last error, and workflow graph visualization
- Recovery metadata on compensatable graph nodes when Squidie exposes rollback policy information
- Recovery policy summaries that distinguish declared rollback callbacks, non-compensatable steps, and manual-review replay boundaries
- Deadline and escalation evidence when Squidie exposes step SLA state, including due-soon, overdue, and escalated run filters
- Step attempt counts on run detail pages
- Light, dark, and system theme controls
- Embedded CSS and JavaScript served by the library
SquidSonar only displays deadline and escalation state returned by Squidie. Alert delivery, notification routing, paging rules, and escalation side effects remain host-application responsibilities.
- Elixir 1.17 or later
- Phoenix 1.8
- Phoenix LiveView 1.1
- A host application with Squidie installed and configured
Add SquidSonar to the host application's dependencies:
def deps do
[
{:squid_sonar, "~> 0.1.7"}
]
endThen fetch dependencies:
mix deps.getImport SquidSonar.Router in the host router and mount the dashboard under the
path that makes sense for the application:
defmodule MyAppWeb.Router do
use MyAppWeb, :router
use SquidSonar.Router
scope "/ops" do
pipe_through [:browser, :require_authenticated_user]
squid_sonar "/sonar"
end
endVisit /ops/sonar to open the dashboard.
SquidSonar accepts a few route-level options:
squid_sonar "/sonar",
as: :runtime_sonar,
socket_path: "/live",
transport: "websocket",
control_actor: {MyAppWeb.SquidSonarAudit, :control_actor, []},
runtime_specs: {MyAppWeb.SquidSonarRuntimeSpec, :runtime_specs, []},
action_registry: {MyAppWeb.SquidSonarRuntimeSpec, :action_registry, []}transport can be "websocket" or "longpoll".
control_actor is persisted with Squidie manual actions such as resume,
approve, and reject. It can be a non-empty string, a non-empty map, or an MFA
tuple. MFA callbacks receive the current Plug.Conn as their first argument.
Prefer a small audit map over a raw user struct:
defmodule MyAppWeb.SquidSonarAudit do
def control_actor(conn) do
user = conn.assigns.current_user
%{
"type" => "user",
"id" => user.id,
"email" => user.email
}
end
endIf omitted, SquidSonar uses a placeholder actor so local demos can exercise manual controls. Production mounts should pass the authenticated operator once the host app wires SquidSonar into its own auth pipeline.
runtime_specs and action_registry enable a start drawer on the /sonar
dashboard. runtime_specs is a host-approved catalog of workflows that an
operator may start. Pass a keyword list or map of stable keys to Squidie DSL
workflow modules or runtime specs, or pass an MFA tuple that receives the
current Plug.Conn as its first argument:
defmodule MyAppWeb.SquidSonarRuntimeSpec do
def runtime_specs(_conn) do
[
checkout: MyApp.Workflows.Checkout,
invoice_reconciliation: MyApp.Workflows.InvoiceReconciliation
]
end
endThe drawer lists those configured workflows, prepopulates payload JSON from the
selected workflow's payload contract, and starts the selected host-approved
workflow with that payload. The browser submits only the selected catalog key
plus payload JSON; SquidSonar looks up the entry server-side. DSL workflow
module entries start through Squidie.start/3. Runtime-authored spec entries
start through Squidie.start_spec/3.
This is not a full workflow JSON editor. If operators need arbitrary workflow
JSON, the host app should first validate and approve that JSON into a runtime
spec catalog entry and action registry. The action registry is the trust
boundary for runtime-authored specs: specs should reference stable action keys,
and the host maps those keys to approved Squidie/Jido action modules before
Squidie.start_spec/3 runs. DSL workflow modules do not need action keys for
their own steps. runtime_spec remains supported as a single-spec compatibility
option, but new integrations should prefer runtime_specs.
Do not put secrets or tenant-private data in the runtime spec or action registry. These values are part of the signed LiveView session used to boot the embedded UI.
Runtime-spec starts are activation-only in SquidSonar. Squidie persists enough definition data for inspection, but replay of runtime-spec runs is not supported. DSL workflow module entries use Squidie's normal workflow start path.
SquidSonar does not ship its own authentication layer. Protect the mounted route with the same browser pipeline, session handling, and authorization rules used for the rest of the host application's operator surface.
The dashboard can issue Squidie control actions when a run exposes safe manual actions. It also displays runtime data returned by Squidie, including workflow names, run IDs, step names, statuses, diagnostic signals, and selected error metadata. Treat the mounted dashboard as an operational control surface and expose it only to trusted users.
Run list and run detail pages refresh automatically while they are open. Detail pages poll active runs and run list pages reload the current filtered view, so manual controls can reflect follow-up workflow work without a browser refresh.
The repository includes a Phoenix example app at examples/example_app. It
mounts SquidSonar at /sonar and seeds real Squidie workflows that produce
completed, failed, retrying, paused, approval-paused, and saga recovery runs.
It also configures a host-owned runtime-spec catalog exposed from the /sonar
dashboard drawer.
The saga recovery run includes a compensatable inventory reservation step so
the dashboard can show declared rollback metadata and recovery policy
diagnostics without calling rollback code. The example server also starts a
small host-owned journal runner, so dashboard control actions such as approving
or rejecting the manual review checkout can advance their scheduled follow-up
steps during local preview.
cd examples/example_app
mix deps.get
mix ecto.create
mix ecto.migrate
mix example.seed
mix phx.serverOpen http://localhost:4000/sonar after the server starts.
SquidSonar.Routermounts the embedded dashboard routes.SquidSonar.Runsis the read boundary over Squidie run APIs.SquidSonar.Dashboardbuilds the filtered, paginated dashboard snapshot.SquidSonar.Runs.WorkflowGraphturns workflow definitions and persisted run state into a display graph.SquidSonarWeb.*contains the embedded LiveViews, components, layout, hooks, and asset controller.
Use the Squidie Elixir Forum thread for public discussion and design context around the runtime and dashboard.
Use GitHub issues for dashboard bugs, feature requests, and release-tracked work.
For informal runtime and Jido-adjacent chat, use the Squidie channel on the Jido Discord.
Apache-2.0