telemetry_metrics
telemetry_metrics copied to clipboard
Collect and aggregate Telemetry events over time
I'm thinking about exemplars lately. If the set of labels that generate exemplars is just another list in the `reporter_opts`, this library doesn't need to change. Are there any thoughts...
The console table reporter will output a table to the console in the format: ``` +--------------------------------------------+ | vm.memory | +-------------+------------+----------+------+ | Measurement | Type | Value | Tags | +-------------+------------+----------+------+...
One of the biggest sticking points to adopting Metrics I have heard over time is understanding how it correlates to telemetry events when presented with the shorthand definition. Potential users...
I'm currently logging a debug "skipping event due to missing measurement" which is helpful for identifying an issue but is sometimes an unavoidable thing, such as `:idle` being `nil` in...
Sometimes people may want to send their metrics based on some parameter that is external to the metric. For example, multi-tenant applications may want to segregate their data in someway....
Hey there, currently I have the following module, ```elixir defmodule MyAppWeb.SafeResolverMiddleware do # ... @impl Absinthe.Middleware def call(resolution, resolver) do op = Enum.find(resolution.path, ¤t_operation?/1) span_nometa( [:safe_resolver_middleware], %{operation_name: operation_name(op), operation_type: operation_type(op)},...