nadavdav
Hey everybody, first post here ![]()
I am trying to monitor our GraphQL (Absinthe) service’s entity resolution, to the granularity of a field.
That means, I want to be able to know which fields were being resolved in each entity - the purpose is to know when a field is not being used anymore, so I can remove it from the graph.
I am using Absinth’s telemetry abilities but it only report to the level of the resolver, and not the field. IE if I’m querying {user { friends { name }} it will report I have accessed User.friends but will leave the name part out.
Did you encounter this issue? Maybe you have a cool solution that I might’ve missed?
THANKS
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
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
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Other Trending Topics
Bond brings Design by Contract to Elixir: preconditions, postconditions and invariants as executable specifications, checked at runtime a...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
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
Latest Phoenix Threads
Latest on Elixir Forum
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
- #ai
- #phoenix_html
- #iex
- #elixirconf-us
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
RudManusachi
Hi @nadavdav
And welcome to the community!
If I understand correctly you want the “resolution path” on on each field that was resolved.
absinthe.resolved.fieldevent might be the one you need.This is supposed to print out resolved path on each resolved field. For example, for
{user { friends { name }}it would emit and print 3 events:hauleth
Just small thing - you should not use anonymous functions as
telemetryhandlers outside debugging.nadavdav
Hey @RudManusachi and @hauleth . thank you for the response!
I gave it a try and I still only get the path of the resolver, but not the field.
It kinda makes sense since the resolver is returning an object, and there isn’t any place to “hook” this reporting when reading the object.
Is it possible to translate 1 metric to multiple reports?
For example, If I am querying
{ user { info { color, age }}I have one resolution event forUser.info(that returns an object) and I want to be able to maybe translate it to two eventsInfo.colorandInfo.age.does it make sense?
RudManusachi
Huh, indeed! Fields are not included in path. However, looks like we can dig that info out from the resolution struct! (
metadata.resolution.definition.selectionsis a list of fields requested to be resolved)Don’t know if this is the most optimal way, but seems to be doing the trick:
I guess it would print something like:
UPD looks like we could use
Absinthe.Resolution.project/1so we could replace
metadata.resolution.definition.selectionswithAbsinthe.Resolution.project(metadata.resolution)And probably that would be better approach, because that way we delegate “dealing with the internal structure of the resolution struct” to the function.
nadavdav
Thank you! I’ll try that soon and hopeful come back with positive results!