Hey,
So I have a serverless instance and I recently got my billing. Now I have about 25mil RPU and I’m currently optimizing my queries.
I was wondering, is it possible to see which of my API routes uses the most RPU? Right now, my best guess is because of my cron jobs that runs every hour and after doing some check using .explain() it really does scans my whole collections so I’m currently optimizing them
For example:
63552 RPU - https://domain.com/userdata
2324 RPU - https://domain.com/api-route-one
I also want to see how much RPU my other queries uses without really using .explain on each one of them since there’s a decent amount of them
Thank you
edit: added some example