rodrigues
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
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 4 of 4 Posts
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, andpostgrexsource code to figure out what the story was, and what I’ve found so far is:The
loggersoption seems to no longer be there on theEcto.Repoconfig (commit that removed it)The changelog and release announcement don’t list this as a breaking change, but rather a deprecation in favor of using
Telemetryinstead. I haven’t confirmed yet what happens if you specify theloggersoption like before. Maybe it still works?The
Ecto.Repodocs recommend that adapters send[:my_app, :repo, :query]Telemetry events, containing at least the data thatEcto.LogEntryused to send tologgers, 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 theloggerscall-backs. Maybe I missed something or the docs just need some clarification on where to go to find more details?Edit: Also,
caller_pidwas removed from theEcto.LogEntrystruct, so I’m not sure how to work around that inspandex_ecto.josevalim
To consume telemetry events, see Telemetry’s README.
For
MyApp.Repo, here is how would would do it:and then attach this module on your Application start callback:
I will make sure to improve the docs.
Regarding
caller_pid, it was also asked in the issues tracker here.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?josevalim
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.