Per the below documentation, system or application administrators may want to monitor the "available" memory instead of total "used" or "free" memory. This extension uses the free -m
command to send the available memory to the AppDynamics controller to be monitored as a metric.
Example:
# free -m
total used free shared buff/cache available
Mem: 917 354 88 1 473 412
Swap: 0 0 0
https://www.redhat.com/sysadmin/dissecting-free-command
❶ Extract .zip file.
❷ Copy the directory to /monitors/ directory
❸ Restart the Machine Agent. (Depending on your install, distribution and configuration method this may vary. See documentation.) https://docs.appdynamics.com/display/PRO45/Start+and+Stop+the+Standalone+Machine+Agent
❶ A supported version of Linux for use with the AppDynamics Machine Agent.
❷ The Linux "free" command.
❸ You can confirm this command exists or review the stats to be reported by typing in a terminal:
free -m
❹ Most systems have the free
by default, however, if you are missing this command, the below should install the needed binaries.
RHEL/CentOS/Fedora
yum install procps
Debian/Ubuntu/LinuxMint
apt-get install procps
• TBD