chore: update phoenix to version 1.8.0-rc.3

This commit is contained in:
Moritz 2025-07-03 20:44:24 +02:00
parent 5b6e5713ec
commit fb9a3cd063
Signed by: moritz
GPG key ID: 1020A035E5DD0824
28 changed files with 1769 additions and 674 deletions

View file

@ -52,29 +52,6 @@ defmodule MvWeb.Telemetry do
unit: {:native, :millisecond}
),
# Database Metrics
summary("mv.repo.query.total_time",
unit: {:native, :millisecond},
description: "The sum of the other measurements"
),
summary("mv.repo.query.decode_time",
unit: {:native, :millisecond},
description: "The time spent decoding the data received from the database"
),
summary("mv.repo.query.query_time",
unit: {:native, :millisecond},
description: "The time spent executing the query"
),
summary("mv.repo.query.queue_time",
unit: {:native, :millisecond},
description: "The time spent waiting for a database connection"
),
summary("mv.repo.query.idle_time",
unit: {:native, :millisecond},
description:
"The time the connection spent waiting before being checked out for the query"
),
# VM Metrics
summary("vm.memory.total", unit: {:byte, :kilobyte}),
summary("vm.total_run_queue_lengths.total"),