Skip to content

Commit

Permalink
fix string passed to Telemetry.report_metric
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-hek committed Jan 15, 2025
1 parent ac6b793 commit e163d51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/membrane/core/element/buffer_controller.ex
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ defmodule Membrane.Core.Element.BufferController do
"""
@spec exec_buffer_callback(Pad.ref(), [Buffer.t()], State.t()) :: State.t()
def exec_buffer_callback(pad_ref, buffers, %State{type: :filter} = state) do
Telemetry.report_metric("buffer", 1, inspect(pad_ref))
Telemetry.report_metric(:buffer, 1, inspect(pad_ref))

do_exec_buffer_callback(pad_ref, buffers, state)
end
Expand Down

0 comments on commit e163d51

Please sign in to comment.