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
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security











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!