nadavdav

nadavdav

Hey everybody, first post here :slight_smile:

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

Showing Posts 1 to 5

RudManusachi

RudManusachi

Hi @nadavdav :wave: And welcome to the community!

If I understand correctly you want the “resolution path” on on each field that was resolved.
absinthe.resolved.field event might be the one you need.

:telemetry.attach_many(
  :resolved_paths,
  [
    [:absinthe, :resolve, :field, :stop]
  ],
  fn _event_name, _measurements, metadata, _config ->
    resolution_path = Absinthe.Resolution.path(metadata.resolution)
    
    IO.inspect(resolution_path, label: "RESOLVED PATH")
  end,
  []
)

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:

["user"]
["user", "friends"]
["user", "friends", "name"]
nadavdav

nadavdav OP

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 for User.info (that returns an object) and I want to be able to maybe translate it to two events Info.color and Info.age.

does it make sense?

RudManusachi

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.selections is 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:

:telemetry.attach(
  :resolved_paths,
  [:absinthe, :resolve, :field, :stop],
  fn _event_name, _measurements, metadata, _config ->
    Absinthe.Resolution.path(metadata.resolution)
    |> IO.inspect(label: "RESOLUTION PATH")
    
    # THIS
    # metadata.resolution.definition.selections 
    Absinthe.Resolution.project(metadata.resolution)
    |> Enum.map(fn field -> field.name end)
    |> IO.inspect(label: "SELECTED FIELDS")
  end,
  []
)

I guess it would print something like:

RESOLUTION PATH: ["user"]
SELECTED FIELDS: ["info"]
...
RESOLUTION PATH: ["user", "info"]
SELECTED FIELDS: ["age", "color"]

UPD looks like we could use Absinthe.Resolution.project/1

Get the child fields under the current field.

so we could replace metadata.resolution.definition.selections with
Absinthe.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

nadavdav OP

Thank you! I’ll try that soon and hopeful come back with positive results!

— All posts loaded —

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
Blokh
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
roeland
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
kszambelanczyk
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
Onor.io
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
jaybe78
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
Trolleger
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 Top

jvoegele
Bond brings Design by Contract to Elixir: preconditions, postconditions and invariants as executable specifications, checked at runtime a...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
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
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
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
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews