linuxmonitoringnetdata

can i monitor four servers from one single net-data instance?


This is my one net data output

This is my one net data output

also i can see other machinies this section

enter image description here

but i want to see other machinies as below picture and it will redirect detailed page when i click any machine

enter image description here

is that possible?? i searched on google but i am not able to find any answer.

i am working on linux machine.


Solution

  • You need to build a custom dashboard. And

        <script type="text/javascript" src="http://yournetdataip:19999/dashboard.js"></script>
    
            <div style="margin-right: 10px; width: 20%;"  
                class="netdata-container-gauge" 
                data-host="http://first-address:19999"
                data-netdata="system.cpu" 
                data-chart-library="gauge" 
                data-title="Server 1" data-units="%" 
                data-gauge-max-value="100" 
                data-width="20%" 
                data-after="-360" 
                data-points="360" 
                data-colors="#ff2600" 
                role="application">
            </div>
            <div style="margin-right: 10px; width: 20%;"  
                class="netdata-container-gauge" 
                data-host="http://second-address:19999"
                data-netdata="system.cpu" 
                data-chart-library="gauge" 
                data-title="Server 2" data-units="%" 
                data-gauge-max-value="100" 
                data-width="20%" 
                data-after="-360" 
                data-points="360" 
                data-colors="#ff2600" 
                role="application">
            </div>
    

    This is will do what you wants.