Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
In the Custom interface, logs overflow from the page. For example, I want to reflect only the last 5 logs. Does anyone know how I can achieve this?
Solution for people who may have a similar problem:
" $('#Logs .log-line').slice(13).remove(); "
By default it says slice(500), adjust this number according to your needs. 13 was enough for me.
Oh, ok, got it. I thought that this also meant that there were issues getting data in the script... Thanks for your reply!
Thanks!
I discovered what happens: I need to load at least one url before loading the custom js functions. I loaded http://example.com before the custom js functions worked fine in "Run Mode".
So simple... Thank you all