Use for monitoring network related metrics.
It uses the machine agent's Sigar library to retrieve the metrics, however these metrics (all or partial) can be overriden through scripting if required.
This extension only works with standalone machine agent.
Before the extension is installed, the prerequisites mentioned here need to be met. Please do not proceed with the extension installation if the specified prerequisites are not met.
- To build from source, clone this repository and run 'mvn clean install'. This will produce a NetworkMonitor-VERSION.zip in the target directory.
- Copy and unzip NetworkMonitor.zip from 'target' directory into <machine_agent_dir>/monitors/
- Edit config.yml file and provide the required configuration (see Configuration section)
- Restart the Machine Agent.
Please place the extension in the "monitors" directory of your Machine Agent installation directory. Do not place the extension in the "extensions" directory of your Machine Agent installation directory.
Note: Please avoid using tab (\t) when editing yaml files. You may want to validate the yaml file using a yaml validator.
Param | Description |
---|---|
networkInterfaces | The network interface to monitor. To monitor multiple interfaces, separate the values using comma, e.g. eth0, eth1, eth2 |
overrideMetricsUsingScriptFile | If set to true, it will execute the defined script for the OS to retrieve metrics. Default value is false. |
scriptTimeoutInSec | The timeout in seconds of script execution. |
scriptFiles (osType) | Type of OS: It's either 'windows' for Windows or 'unixBase' for other OS such as Linux, MAC, Solaris, etc. |
scriptFiles (filePath) | The path of the script file. Either provide a relative path from the machine agent's installation dir or an absolute path. Two script templates are provided, one for each osType. |
metricPrefix | The path prefix for viewing metrics in the metric browser. More details on metric prefix can be found here |
Below is an example config for monitoring multiple interfaces with enabled metrics scripting override:
# Linux:, networkInterfaces are of the form eth*
# Windows: Please use the network interface full name from Device Manager (Intel(R) PRO/1000 MT Desktop Adapter)
networkInterfaces: [ "eth0", "Intel(R) PRO/1000 MT Desktop Adapter"
]
overrideMetricsUsingScriptFile: true
scriptTimeoutInSec: 60
scriptFiles:
- osType: windows
filePath: monitors/NetworkMonitor/scripts/windows-metrics.bat
- osType: unixBase
filePath: monitors/NetworkMonitor/scripts/unix-base-metrics.sh
metricPrefix: "Custom Metrics|Network|"
There maybe cases where Sigar doesn't work on your environment or you've a preferred way of retrieving the metrics. In any case, you have the flexibility to override some or all metrics using scripting.
There are two script templates provided:
- unix-base-metrics.sh for non-windows environment
- windows-metrics.bat for windows environment
Update the relevant script template by uncommenting out the metrics you wish to override and provide the value.
Below is an example override on some TCP State metrics in unix-base-metrics.sh:
...
echo "name=TCP|State|Close Wait,value=" `netstat -an | grep -i CLOSE_WAIT | wc -l`
echo "name=TCP|State|Establised,value=" `netstat -an | grep -i ESTABLISHED | wc -l`
echo "name=TCP|State|Fin Wait1,value=" `netstat -an | grep -i FIN_WAIT_1 | wc -l`
echo "name=TCP|State|Fin Wait2,value=" `netstat -an | grep -i FIN_WAIT_2 | wc -l`
echo "name=TCP|State|Listen,value=" `netstat -an | grep -i LISTEN | wc -l`
...
Below is an example override for some custom metric in windows-metric.bat:
...
set cmd="netstat -an | find "192.168.31" /c"
FOR /F %%i IN (' %cmd% ') DO SET val=%%i
echo name=Autotrader^|Listen,value=%val%
...
Metrics value reported is the computed delta value (present value - previous value) Metric path is typically: Application Infrastructure Performance|<Tier>|Custom Metrics|Network| followed by the individual metrics below:
Note: <network_interface> is replaced with the actual network interface name, e.g eth0
Metric | Description |
---|---|
<network_interface>|RX KiloBytes | The total kilo bytes received |
<network_interface>|RX Dropped | The number of dropped packets due to reception errors |
<network_interface>|RX Errors | The number of damaged packets received |
<network_interface>|RX Frame | The number received packets that experienced frame errors |
<network_interface>|RX Overruns | The number of received packets that experienced data overruns |
<network_interface>|RX Packets | The number of packets received |
<network_interface>|Speed | The speed in bits per second |
<network_interface>|TX KiloBytes | The total kilo bytes transmitted |
<network_interface>|TX Carrier | The number received packets that experienced loss of carriers |
<network_interface>|TX Collision | The number of transmitted packets that experienced Ethernet collisions |
<network_interface>|TX Dropped | The number of dropped transmitted packets due to transmission errors |
<network_interface>|TX Errors | The number of packets that experienced transmission error |
<network_interface>|TX Overruns | The number of transmitted packets that experienced data overruns |
<network_interface>|TX Packets | The number of packets transmitted |
Metric | Description |
---|---|
TCP|Active Opens | The number of active opens |
TCP|Attempt Fails | The number of attempted connection failed |
TCP|Conn Established | The number of connection established |
TCP|Resets Received | The number of resets received |
TCP|Bad Segments | The number of bad segments |
TCP|Segments Received | The number of segments received |
TCP|Inbound Total | Total number of TCP inbound connections |
TCP|Resets Sent | The number of resets sent |
TCP|Segments Sent | The number of segments sent |
TCP|Outbound Total | Total number of TCP outbound connections |
TCP|Passive Opens | The number of passive opens |
TCP|Segments Retransmitted | The number of segments retransmitted |
Metric | Description |
---|---|
TCP|State|Bound | The number of bound connections |
TCP|State|Close Wait | The number of connections waiting for termination request from the local user |
TCP|State|Closed | The number of closed connections |
TCP|State|Closing | The number of connections waiting for termination acknowledgment |
TCP|State|Establised | The number of open connections |
TCP|State|Fin Wait1 | The number of connections waiting for termination requests from the remote TCP or acknowledgment of termination request previously sent |
TCP|State|Fin Wait2 | The number of connections waiting for termination requests from the remote TCP |
TCP|State|Idle | The number of connections in idle |
TCP|State|Last Ack | The number of connections waiting for lask acknowledgment of termination request sent to remote TCP |
TCP|State|Listen | The number of listening for connections |
TCP|State|Syn Recv | The number of confirming connection requests acknowledgment after having both received and sent a connection request |
TCP|State|Syn Sent | The number of waiting for a matching connection request after having sent a connection request |
TCP|State|Time Wait | The number of connections waiting for enough time to pass to be sure the remote TCP received the acknowledgment of its connection termination request |
Metric | Description |
---|---|
All Inbound Total | Total number of incoming connections |
All Outbound Total | Total number of outgoing connections |
Workbench is an inbuilt feature provided with each extension in order to assist you to fine tune the extension setup before you actually deploy it on the controller. Please review the following document on How to use the Extensions WorkBench.
-
Please follow the steps listed in this troubleshooting-document in order to troubleshoot your issue. These are a set of common issues that customers might have faced during the installation of the extension.
-
Verify Machine Agent Data: Please start the Machine Agent without the extension and make sure that it reports data. Verify that the machine agent status is UP and it is reporting Hardware Metrics
-
If there is a 'java.lang.NoClassDefFoundError: org/hyperic/sigar/SigarException' in machine-agent.log, please copy all the sigar libraries/dependencies from MachineAgent_Home/lib to MachineAgent_Home/monitorsLibs including sigar.jar and .so files to avoid this error
Always feel free to fork and contribute any changes directly here on GitHub
Platform | Version |
---|---|
Ubuntu | 12.04 LTS |
Windows | 7 |
Mac OSX | 10.9.1 |
Name | Version |
---|---|
Extension Version: | 2.2 |
Last updated On: | 09/04/2024 |
Changes list | Change log |
Note: While extensions are maintained and supported by customers under the open-source licensing model, they interact with agents and Controllers that are subject to AppDynamics’ maintenance and support policy. Some extensions have been tested with AppDynamics 4.5.13+ artifacts, but you are strongly recommended against using versions that are no longer supported.