Is there a way to modify the page so that the top lists can be more than 10 in v6? Been a longtime user/supporter and I was able to do this in v5 by modifying the index.js, which i used to have to after each update. . This is critical for me, I have 10 VLANs n my home network with > 150 devices. Most are IOTs devices, smart devices, cameras etc all in different VLANS. I also have a lot of ROKU tvs and smart tvs and therein lies the problem. due to blocking roko logging, the ROKUs are usually the top 10 blocked and noisy devices on my network, and take up the lists. usually its not the ROKUs I should be worried about, its some other IOT device or otherwise who I want to view, and unfortunately with this setup I cannot, Is there anyway to extend the lists (100) in V6 via code mode or otherwise? Ca this be added as a config feature? Thanks.
Since you already know how to edit the web interface, you can achieve the same effect by editing the same file.
You just need to find the correct URLs and add count
option to them:
-
find
/api/stats/top_clients?blocked=true
and change to:
/api/stats/top_clients?blocked=true&count=50
-
a few lines below, find
/api/stats/top_clients
and change to:
/api/stats/top_clients?count=50
Perfect! Thank you! Can you let me know which file I should now be modifying in v6? Thanks for your help.
The same one: index.js
(Click on the links in my previous post.)
That worked, thank you!!!
Thanks again @rdwebdesign . qq. is there any appetite for making this a configurable part of the UI?
Not at the moment.
You can always open a feature request and wait to see if there are enough votes (and if this is technically doable or desirable).
will do and Thanks!