Skip to content
This repository has been archived by the owner on Apr 11, 2019. It is now read-only.

Custom Dashboard for IA

strayhud edited this page Sep 13, 2010 · 1 revision

The following html will create a simple dashboard for viewing Infrastructure Agent metrics. Cut and paste this into the edit window of the dashboard creator in RPM.

<table width='99%'>
    <tr>

        <td width=50%>
           <h1>  Infrastructure Metrics</h1>
           <p>
               The New Relic Infrastructure Agent (IA) collects CPU and disk metrics from the host where it is running.
               It is currently in beta and requires a custom dashboard to view the metrics. 
           </p>
           <p>
  Depending on your environment
              (i.e., number of IA's you are running, CPUs, Disks, etc.) you may want to edit this dashboard and modify the composition to better suit your needs.
           </p>
        </td>

        <td width=50%>
         {% line_chart regexp:'System/CPU/.*/percent' title:'CPU' value:average_value value_suffix:'' label:segment_2 %}
        </td>

    </tr>

    <tr>

        <td width=50%>
        {% horizontal_bar_chart simple_tooltip:true value_suffix:' percent' value:average_value label:segment_2 regexp:'System/Filesystem/.*/percent' title:'Disk Utilization (percent)' %}
        </td>

        <td width=50%>
        {% line_chart regexp:'System/Resource/DiskIO/.*' title:'Disk I/O' value:total_value label:segment_2 %}
        </td>

    </tr>

</table>


Clone this wiki locally