about summary refs log tree commit diff
path: root/lib/rook_web/telemetry.ex
diff options
context:
space:
mode:
authorMelonai <einebeere@gmail.com>2021-05-07 17:11:50 +0200
committerMelonai <einebeere@gmail.com>2021-05-07 17:11:50 +0200
commit88c0fbf10145ddd4ccd10ee432b4ca1aadd96a91 (patch)
tree33691a532f460dbdf8a0e7909b898c0b324eaa2f /lib/rook_web/telemetry.ex
downloadrook-88c0fbf10145ddd4ccd10ee432b4ca1aadd96a91.tar.zst
rook-88c0fbf10145ddd4ccd10ee432b4ca1aadd96a91.zip
Initial structure
Diffstat (limited to 'lib/rook_web/telemetry.ex')
-rw-r--r--lib/rook_web/telemetry.ex48
1 files changed, 48 insertions, 0 deletions
diff --git a/lib/rook_web/telemetry.ex b/lib/rook_web/telemetry.ex
new file mode 100644
index 0000000..24b502b
--- /dev/null
+++ b/lib/rook_web/telemetry.ex
@@ -0,0 +1,48 @@
+defmodule RookWeb.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 will execute the given period measurements
+      # every 10_000ms. Learn more here: https://hexdocs.pm/telemetry_metrics
+      {:telemetry_poller, measurements: periodic_measurements(), period: 10_000}
+      # Add reporters as children of your supervision tree.
+      # {Telemetry.Metrics.ConsoleReporter, metrics: metrics()}
+    ]
+
+    Supervisor.init(children, strategy: :one_for_one)
+  end
+
+  def metrics do
+    [
+      # Phoenix Metrics
+      summary("phoenix.endpoint.stop.duration",
+        unit: {:native, :millisecond}
+      ),
+      summary("phoenix.router_dispatch.stop.duration",
+        tags: [:route],
+        unit: {:native, :millisecond}
+      ),
+
+      # VM Metrics
+      summary("vm.memory.total", unit: {:byte, :kilobyte}),
+      summary("vm.total_run_queue_lengths.total"),
+      summary("vm.total_run_queue_lengths.cpu"),
+      summary("vm.total_run_queue_lengths.io")
+    ]
+  end
+
+  defp periodic_measurements do
+    [
+      # A module, function and arguments to be invoked periodically.
+      # This function must call :telemetry.execute/3 and a metric must be added above.
+      # {RookWeb, :count_users, []}
+    ]
+  end
+end