rodrigues

rodrigues

Upgrading ecto - telemetry integration

I couldn’t find in ecto docs or elsewhere how to upgrade my instrumentation after telemetry.

Today I have the code below.

Do you know a guide that could help me with that upgrade? Or what would be the equivalent code with telemetry?

I still want to use the functions provided by my module MyApp.Statix.

Thanks!

config :my_app, MyApp.Repo,
  loggers: [{Ecto.LogEntry, :log, []}, {MyApp.Statix.Repo, :log, []}],
  # ...

defmodule MyApp.Statix.Repo do
  import MyApp.Statix, only: [histogram: 3, increment: 3, tags: 1]
  alias Ecto.LogEntry

  @moduledoc "Provides Ecto Repo stats"

  @query_time "db.query_exec_time"
  @queue_time "db.query_queue_time"
  @decode_time "db.query_decode_time"
  @count "db.query_count"

  def log(
        %LogEntry{
          query_time: query,
          queue_time: queue,
          decode_time: decode
        } = entry
      ) do
    with {:ok, tags} when is_list(tags) <- {:db, entry} |> tags(),
         opts = [tags: tags],
         :ok <- @query_time |> histogram((query || 0) + (queue || 0), opts),
         :ok <- @queue_time |> histogram(queue || 0, opts),
         :ok <- @decode_time |> histogram(decode || 0, opts),
         :ok <- @count |> increment(1, opts) do
      entry
    end
  end
end

Marked As Solved

josevalim

josevalim

Creator of Elixir

To consume telemetry events, see Telemetry’s README.

For MyApp.Repo, here is how would would do it:

defmodule MyApp.Telemetry do
  def handle_event([:my_app, :repo, :query], time, metadata, config) do
    IO.inspect binding()
  end
end

and then attach this module on your Application start callback:

Telemetry.attach("my-app-handler", [:my_app, :repo, :query], MyApp.Telemetry, :handle_event,%{})

I will make sure to improve the docs.

Regarding caller_pid, it was also asked in the issues tracker here.

Also Liked

josevalim

josevalim

Creator of Elixir

The event name is based on the module name. So if you have MyApp.AnotherRepo, it will be [:my_app, :another_repo, :query]. You can also configure the prefix in the repo.

GregMefford

GregMefford

As co-maintainer of Spandex, and specifically spandex_ecto, I’m also keenly interested in what the story is around Ecto and Telemetry in v3.0. I just spent about an hour looking through the ecto, ecto_sql, and postgrex source code to figure out what the story was, and what I’ve found so far is:

  1. The loggers option seems to no longer be there on the Ecto.Repo config (commit that removed it)

  2. The changelog and release announcement don’t list this as a breaking change, but rather a deprecation in favor of using Telemetry instead. I haven’t confirmed yet what happens if you specify the loggers option like before. Maybe it still works?

  3. The Ecto.Repo docs recommend that adapters send [:my_app, :repo, :query] Telemetry events, containing at least the data that Ecto.LogEntry used to send to loggers, but I’m not sure where to find the actual list of events that get sent and what the metadata will be. I am guessing that it’s currently only this, which is the same thing that you used to get from the loggers call-backs. Maybe I missed something or the docs just need some clarification on where to go to find more details?

  4. Edit: Also, caller_pid was removed from the Ecto.LogEntry struct, so I’m not sure how to work around that in spandex_ecto.

hauleth

hauleth

I am wondering, how it will work when I have multiple repos in single application? Will all be logged into the same event_name? Also how to listen on all events of repo at once? Is there any solution for listening to multiple events at once? Like using prefix instead of full name?

Where Next?

Popular in Questions Top

sergio
In Ruby, I can go: User.find_by(email: "foobar@email.com").update(email: "hello@email.com") How can I do something similar in Elixir? ...
New
LegitStack
I’m hoping you guys can give me some general advice and perhaps code examples if you’re feeling up to it. I’m very interested in Elixir,...
New
JorisKok
I have a server on AWS, and was running a load test using artillery. When looking at the Phoenix dashboard I see the Ports going to 100% ...
New
Jim
As a follow up to my earlier question: I have the code compiling and running but not getting a successful login from the rest server. ...
New
fireproofsocks
I’m working on defining a simple Ecto schema for a table (in PostGres), but I don’t see where I can define a column as NOT NULL. Conside...
New
nsuchy
Hi. I’ve noticed that Windows Powershell has it’s own IEX command and you cannot access Elixir’s IEX due to the conflict. This isn’t a cr...
New
script
If I have a string “1000 cfu/ml” . I want to remove the characters and / and space . So the string is like this "1000" What is the ...
New
aadeshere1
I have a another noob question about loop. Since elixir is immutable, while loop is not directly possible. total = 10 while total != 0 ...
New
qwerescape
Is there a way to get the call stack or stack trace at any point in the code? Not from exceptions, but an expression that returns how the...
New
lucidguppy
I have a super simple question about elixir - how would I take a file like this foo bar baz and output a new file that enumerates th...
New

Other popular topics Top

pmjoe
I have a relationship of love and hate with Elixir. Lots of things are just absolutely right, but there are some things that are kind of ...
New
axelson
This post is a wiki (feel free to hit the edit button near the bottom right of this post to add your own changes!) This post collects co...
239 45766 226
New
ycv005
I have followed this StackOverflow post to install the specific version of Erlang. And When I am running mix ecto.setup then getting fol...
New
nsuchy
Hi. I’ve noticed that Windows Powershell has it’s own IEX command and you cannot access Elixir’s IEX due to the conflict. This isn’t a cr...
New
vertexbuffer
Hello, can anybody help here..? I have a list of players and I what to delete an element, but every for loop the list is reverting to ori...
New
danschultzer
None of the current solutions worked well for me, so I went ahead and built a user management system from scratch. This project took far...
548 27727 240
New
qwerescape
Is there a way to get the call stack or stack trace at any point in the code? Not from exceptions, but an expression that returns how the...
New
msaraiva
Surface is an experimental library built on top of Phoenix LiveView and its new LiveComponent API that aims to provide a more declarative...
564 42633 214
New
belgoros
I’m not a pro in using Regex and can’t figure out why the following behaviour happens, especially if we take into account the difference ...
New
lucidguppy
I have a super simple question about elixir - how would I take a file like this foo bar baz and output a new file that enumerates th...
New

We're in Beta

About us Mission Statement