blackode

blackode

Custom Metrics in Phoenix App using Telemetry

Hi, Wish You All Happy New Year 2020 won = 2021

I wish to use :telemetry in one of my projects. I’m novice in this topic.
After reading docs and some articles, it’s tempting to use it.

The using of this lib giving me the feeling of a pro coder.

Requirement

I need to measure the profile_visits I have an endpoint something like GET /profiles/profile_id When ever the people visits that particular route I have to track down the count of that particular route visits.

Schema

table -> profile_visits 
columns -> id, profile_id, count

My Current Solution

I simply updating the count value by calling Repo.update and increasing the count value by +1 where profile_id == <<profile_id>>

Now, I’m trying to move to telemetry.
To achieve I need to write a lot of lines includes custom_event custom_listener comparing to above solution which I felt simple.

Eventually, The logic of insertion metric and exraction of metric is same.

After this I have couple of questions that is keeps me away from using telemetry in the project.

Is telemetry not for such simple measurements?
Is this recommended approach to use telemetry for this kinda requirements?
Do we have any advantages to use telemetry over my approach current solution?

Glad if some experts helps us so we can grab the more developers to use telemetry

First 3 of 3 Posts! Switch mode

blackode

blackode

Any suggestions please?

LostKobrakai

LostKobrakai

It depends. Is the counter really a “metric” or is that tracking part of the service you’re providing? If it’s the first one then telemetry is imo the way to go. If not than your solution seems like the appropriate one.

Telemetry is way more than just means of updating a number in some database. It’s a generalized and structured way of publishing events in your application code, so you can listen to those in places external to your core business logic for (pre)-processing, aggregation and eventual forwarding to things like persistent storages, dashboards and similar tools for inspecting the inner workings of your project.

The pubsub architecture allows for quite lean code needing to be added to your business logic for instrumentation, compared to doing everything mentioned above in place, which can sometimes even make the business logic non-obvious because of all the additional stuff going on. Also what you actually listen on is not scattered across your whole codebase.

The other benefit is that given telemetry becomes more and more the standard in elixir libraries you can use one tool to not only instrument your code, but also to listen to events published by the libraries you’re using.

Another benefit of also letting people create their own listeners: It’s quite flexible to allow for situations like pushing metrics to a not yet natively supported service/db, allow for different sets of metrics to be sent to different endpoints.

All that flexibility comes for the price of a bit more upfront cost in implementation. It’s not just a single line Repo.update.

blackode

blackode

Thanks a lot :slight_smile:
This clears most of the doubts on usage.

Where Next?

Trending in Questions Top

jonnycharles
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
spammy
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
silverdr
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated! To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead. Sta...
New
saveman71
Hello ! We want new/edit form pages to POST/PUT to their own URL rather than the resources REST defaults (post /things, put /things/:id)...
New
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
bottlenecked
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
michallepicki
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 Top

JesseHerrick
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New
ausimian
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
type1fool
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
akoutmos
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New

We're in Beta

About us Mission Statement