This looks really cool. What does it look like when multiple media/streams are playing?
It stacks them in the middle section and then you can scroll the middle section independently from the main page view. On iOS it's just one long column of course. Here is a screenshot of it scrolled half way between two items playing at the same time.
I used to have a 2009 mini as well. The performance increase when going to a 2012 Mac mini was massive. I think you’ll be quite pleased with the results. Are you going to pick one up soon or wait? It seems like we won’t see a new Mac mini until next year sometime.
- Hovering over hard drives now shows the amount of free / total space instead of used / total space (this is closer to how OS X 10.7+ reports space in About this Mac -> More info -> Storage)
- Added option in config.ini to set number of CPU cores so load calculates correctly out of the box.
- printDiskBar() now automatically uses GB or TB display when appropriate.
- Added new autoByteFormat()
- Rewrote how the myPlex token is retrieved and stored for speed.
Fixes:
- Renamed Disk Space to Storage
- Removed unused functions after rewriting printDiskBar().
- Disabled Memory display. I left the function in the code but OS X uses memory uniquely compared to other OS’s rendering the display of used ram essentially pointless.
- Summaries are now being truncated on both movies and tv episodes if they need to be instead of just on movies.
- Renamed misc folder to caches
- Added more commenting to help out people not familiar with php
- Found more places where config.ini variables weren’t being used
I just caught a glaring bug in the new plex token caching and pushed it to github. If you were running 0.1.1 grab the latest functions.php or check the commit to see it.
I will take a look at installing it. Any ideas of how to get it up and running on a Linux (Mint 15) machine? I think I have all the pre-req's already installed.
I will take a look at installing it. Any ideas of how to get it up and running on a Linux (Mint 15) machine? I think I have all the pre-req's already installed.
Thx!
There is a linux optimized version that [member='dashbad'] created located here. He's pretty good about integrating any improvements from my builds.
I ended up installing this on my linux box. I have 3 servers on my network that stream Plex, plus 2 NAS boxes (Synology DS413j + FreeNAS). Has anyone set this up to monitor resources on other servers?
Would love to get this up and running on my WS2012 setup. I can tinker a bit with code, but not this much. Got the site up and running with XAMPP, but it displays near nothing, just same frames and logos.
I've managed to install but I'm having trouble getting things to work.
I've looked at the config file and tried filling in details where appropriate (plex server ip, etc)
Can somebody help with a friendly step by step guide on how to get this configured?
Also, I'd like to monitor bandwidth but I have no idea how to use pfSense. Is this router specific? Will it work with an Apple Time Capsule/Airport device?
I've managed to install but I'm having trouble getting things to work.
I've looked at the config file and tried filling in details where appropriate (plex server ip, etc)
Can somebody help with a friendly step by step guide on how to get this configured?
Also, I'd like to monitor bandwidth but I have no idea how to use pfSense. Is this router specific? Will it work with an Apple Time Capsule/Airport device?
Thanks in advance for help.
Are you running your plex on a mac or linux?
I've modified the bandwidth monitor to work with ifstat (which uses local monitoring vs router monitoring), but thats for my Linux setup.
What part have you gotten to work already? Do you see any information or nothing? I'll do my best to walk you through the config.
If your using the default code (from ryanc) theres a few more things that need to be modified aside from the config file. You also need to change some settings in assets/php/functions.php. The hard drives volumes listed there are all his, so you'll need to modify that to reflect your current setup.
I've modified the bandwidth monitor to work with ifstat (which uses local monitoring vs router monitoring), but thats for my Linux setup.
What part have you gotten to work already? Do you see any information or nothing? I'll do my best to walk you through the config.
If your using the default code (from ryanc) theres a few more things that need to be modified aside from the config file. You also need to change some settings in assets/php/functions.php. The hard drives volumes listed there are all his, so you'll need to modify that to reflect your current setup.
Ah that makes sense. I was wondering why none of my drives were showing up.
I'm running on my Mac (OSX 10.9) which is where my PMS is hosted too. I'm running the site locally using XAMPP.
Would I be able to use local monitoring too? Here's a screenshot of what I see at the moment:
Looking forward to your reply. Thanks for you help!!
function makeDiskBars()
{
// For special drives like my Drobos I have to set the total disk space manually.
// That is why you see the total space in bytes.
printDiskBar(getDiskspace("/"), "Macintosh HD", disk_free_space("/"), disk_total_space("/"));
printDiskBar(getDiskspace("/Volumes/My Book"), "My Book", disk_free_space("/Volumes/My Book"), disk_total_space("/Volumes/My Book"));
printDiskBar(getDiskspace("/Volumes/My Book 3TB"), "My Book 3TB", disk_free_space("/Volumes/My Book 3TB"), disk_total_space("/Volumes/My Book 3TB"));
}
That seems to have done the trick for disk storage.
Awesome- glad that part is working. You can comment out any services your not using in assets/php/services_ajax.php so you're not seeing offline on the bottom left column.
Did you set the config.ini file location in functions.php?
You can edit left_column_top_ajax.php to change the links on the top left column.