• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Question Any way for a server monitoring tool to end customer

gennolo

Basic Pleskian
Hi ,

I wonder what would be the best way to offer an end customer / subscriber
a way to have a whole server monitoring tool (CPU usage / RAM / Disk etc.)
in Plesk without giving him Plesk admin credentials, in a single-customer Plesk box scenario.

As far as I understand all the monitoring plugins (Server Health Monitor, Watchdog..)
are only reachable from an administrative account (or am I missing something ?)

Thank you.
 
Why do you think that knowledge about the consumption of resources by a server can be of interest to end users? In my opinion, monitoring and managing the entire server's resources is a privilege only for the administrator of this server.
 
Had several scenarios in "semi-managed" VPS renting where it was requested by the end user to be capable of monitoring 24/7 of the used resources by his server
(for example by monitoring specific scripts or during website bottlenecks troubleshooting) or even to convince him that some slowdowns were not resource related.
 
Had several scenarios in "semi-managed" VPS renting where it was requested by the end user to be capable of monitoring 24/7 of the used resources by his server
(for example by monitoring specific scripts or during website bottlenecks troubleshooting) or even to convince him that some slowdowns were not resource related.

You can install netdata to provide a live monitoring dashboard to end users. It can be installed in few minutes, there are a lot of plugins available to monitor all service and it's resources footprint is low. You can use nginx as reverse-proxy to give access to the dashboard on https://yourenduserdomain.tld/netdata/

Screenshot_2018-05-30GetcontrolofyourLinuxServersSimpleEffectiveAwesome.png



Netdata automated installation :
Code:
bash <(curl -Ss https://my-netdata.io/kickstart.sh) all
 
@virtubox : This is definitely what I was looking for , so thank you for your suggestion !
Have you already experienced installing it alongside Plesk ?
I see that this tool is opening TCP port 19999 and install some OS packages / dependencies...
My fear is that it could "conflict" in some way with panel itself.
 
@virtubox : This is definitely what I was looking for , so thank you for your suggestion !
Have you already experienced installing it alongside Plesk ?
I see that this tool is opening TCP port 19999 and install some OS packages / dependencies...
My fear is that it could "conflict" in some way with panel itself.

I'm running netdata on all my Plesk servers without any issues. Netdata use the port 19999 by default, but you can use another port and if your firewall is enabled, netdata dashboard will only be available on localhost. That's why in most of case, it's better to use nginx as reverse-proxy, to access netdata under https, and to set add an authentication with a htpasswd.

Otherwise, you can still create your own dashboard with netdata metrics :

Screenshot_2018-05-31CustomNetdataDashboardbyVirtuBox.png
 
Back
Top