Hi,
New to this forum so if this is wrong place for this question please suggest an appropriate forum for general Rails questions before removing this post.
I’m exploring reporting options in a live Rails application. I have a dozen or so simple metrics like:
User.where('created_at > ?', 1.week.ago).count
I’d like to bundle them and present them ideally outside the Rails app itself though I could create a new model and view I’m wondering if there are external tools/dashboards that could quickly be set up to monitor a few key performance indicators? Or a route that could provide JSON for these metrics that another tool could pick up? Or simply append row to existing Google sheet (or similar)?
What are some modern approaches people are using to provide visibility into Rails applications?
Thanks for any suggestions!