bdd181425b
Docker Compose project with automated Playwright benchmarks comparing django-liveview 2.2.0 against Phoenix LiveView 1.0 across 6 scenarios.
33 lines
986 B
Elixir
33 lines
986 B
Elixir
defmodule BenchmarkWeb.Telemetry do
|
|
use Supervisor
|
|
import Telemetry.Metrics
|
|
|
|
def start_link(arg) do
|
|
Supervisor.start_link(__MODULE__, arg, name: __MODULE__)
|
|
end
|
|
|
|
@impl true
|
|
def init(_arg) do
|
|
children = [
|
|
{:telemetry_poller, measurements: periodic_measurements(), period: 10_000}
|
|
]
|
|
|
|
Supervisor.init(children, strategy: :one_for_one)
|
|
end
|
|
|
|
def metrics do
|
|
[
|
|
summary("phoenix.endpoint.start.system_time", unit: {:native, :millisecond}),
|
|
summary("phoenix.endpoint.stop.duration", unit: {:native, :millisecond}),
|
|
summary("phoenix.router_dispatch.stop.duration", tags: [:route], unit: {:native, :millisecond}),
|
|
summary("phoenix.live_view.mount.stop.duration", unit: {:native, :millisecond}),
|
|
summary("phoenix.live_view.handle_event.stop.duration", unit: {:native, :millisecond}),
|
|
summary("benchmark.repo.query.total_time", unit: {:native, :millisecond})
|
|
]
|
|
end
|
|
|
|
defp periodic_measurements do
|
|
[]
|
|
end
|
|
end
|