telemetry_metrics icon indicating copy to clipboard operation
telemetry_metrics copied to clipboard

Collect and aggregate Telemetry events over time

Results 6 telemetry_metrics issues
Sort by recently updated
recently updated
newest added

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...

discussion

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...

discussion

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, &current_operation?/1) span_nometa( [:safe_resolver_middleware], %{operation_name: operation_name(op), operation_type: operation_type(op)},...