Hacker News new | past | comments | ask | show | jobs | submit login
Show HN: Get Rails performance metrics into Chrome Dev Tools (github.com/scoutapp)
136 points by itsderek23 on March 3, 2018 | hide | past | favorite | 19 comments



Here's a gif I made showcasing Server Timing with Node.js + Chrome DevTools: https://umaar.com/dev-tips/136-server-timing/


I was excited when I first heard about Server Timing, until I realised it was limited to a single duration value. Being able to model an actual timeline would make it significantly more useful.


The screenshot shows a breakdown of timing by component (Middleware, router, view, etc). Or perhaps I don't quite understand what you mean by "model an actual timeline"?

As a side note, we've been using miniprofiler[0] for a long while now, and it has some limitations, but can be very useful some times.

[0] https://github.com/MiniProfiler/rack-mini-profiler


I think I get what OP is saying. The screenshot [1] shows you the aggregate time of each arbitrary component, but it's not mapped out along a time series, like you see in the Network panel's Waterfall or in a Performance recording.

I'll see if there's anything we can do on our side (I'm the DevTools tech writer), but I think it's an API limitation. We might be able to use some arbitrary convention in the timing values that let's us plot along a time series...

[1] https://camo.githubusercontent.com/bc62621acd195d11d0247c0cc...


> but I think it's an API limitation

Author here - I believe that's the case. There isn't a way to specific start & end time: https://w3c.github.io/server-timing/#dom-performanceserverti...

That said, the spec also mentions:

> To minimize the HTTP overhead the provided names and descriptions should be kept as short as possible - e.g. use abbreviations and omit optional values where possible.

I could see significant issues if we tried to send data in timeline fashion (such as creating a metric for each database record call in an N+1 scenario).

One idea: pass down an URI (ie - https://scoutapp.com/r/ID) that when clicked, provides full trace information.


You should really just instrument your application with metrics for a time series database like Prometheus, Influx, or OpenTSDB. You'll find a mature set of tools and methodology. Server Timing looks very naive.


Author here.

Application instrumentation - whether via Prometheus, StatsD, Scout, New Relic - solves a very different problem than this. The server timing metrics here are actually extracted from an APM tool (Scout), so you get the best of both worlds.

With those tools, you do not get immediate feedback on the timing breakdown of a web request. At worst, the metrics are heavily aggregated. At best, you'll need to wait a couple of minutes for a trace.

Profiling tools that give immediate feedback on server-side production performance have their place, just like those that collect and aggregate metrics over time.


This gem seems like a good way to get a full app view while remaining in the browser. The only thing I might add would be to have an example turning on these metrics on a per request basis (via a parameter) so that you could check performance for users other than admin users.

Aside: I've used scout on a production application and it is similar in quality to new relic but far simpler to understand.


Hi Derek! You've helped me with my employer's Scout configuration in Slack :)

Is there an automated way of getting the average of a performance metric (eg Time spent in AR) over N requests?


> Hi Derek! You've helped me with my employer's Scout configuration in Slack :)

Small world!

> Is there an automated way of getting the average of a performance metric (eg Time spent in AR) over N requests?

I'm assuming you mean w/Chrome dev tools + server timing?

Not that I'm aware of...DevTools is an area I'd like to explore more though.


Seems to be using the `Server-Timing` header — are there docs somewhere on what this expects & what features it supports? Are other browsers likely to follow it?


This is the W3C spec for it: https://www.w3.org/TR/server-timing/


Regarding browser support, I believe the standard is just a set of HTTP headers. So all browsers support it. It's just a matter of instrumenting it in each browser's respective developer tools.


There's also RailsPanel which I found quite useful when I was still using Chrome: https://chrome.google.com/webstore/detail/railspanel/gjpfobp...


Neat! Seems similar to this project which I've been keeping an eye on: https://github.com/geoffreylitt/ladybug



Neat!

Anyone know of a similar tool for Python3/flask (or wsgi probably)?


What's the point of using that vs proper tracing?


Author here.

The server timing metrics here are actually extracted from an APM tracing tool (Scout).

Tracing services generally do not give immediate feedback on the timing breakdown of a web request. At worst, the metrics are heavily aggregated. At best, you'll need to wait a couple of minutes for a trace.

The Server Timing API (which is how this works) give immediate performance information, shortening the feedback loop and allowing you to do a quick gut-check on a slow request before jumping to your tracing tool.




Consider applying for YC's Spring batch! Applications are open till Feb 11.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: