Hi all, after upgrading to elixir 1.15.1, erlang 26.0.2, I’ve seen
[error] Markably.Statix histogram metric "pipeline_rest.update_mby_tasks_aggregator.push_delivered" lost value 161 due to port closure
I’m not sure where to start with this.
this is the location where the call is made:
@impl true
def handle_out("task:update", payload, socket) do
dbg(payload)
push(
socket,
"user:" <> socket.assigns.user_id,
payload
)
Markably.Statix.histogram(
"pipeline_rest.update_mby_tasks_aggregator.push_delivered",
Timing.unix_ms_now() - payload.enqueued_at
)
{:noreply, socket}
end
Any suggestions?
Michael