Linux

How to create and deliver a report on System Utilization on a Linux based OS

SystemUtilization

When we’re attempting to figure out what’s going on with our server so we can debug it, having helpful information about the system’s memory status, mount points, and all running processes can help us narrow down the problem. Our purpose here is to check out how our system is doing and report what we get. When it comes to reporting in the field of IT, especially for System Administrators, the method is different. Typically, the requirement for a new device is dependent on what a system reports. As a result, adding this to our skill set is critical. Kindly refer to some of my guides: How to use container insights to get the full benefits of Azure Monitor for Azure Kubernetes workload, and how to create a static pod in Kubernetes with demos that can help you become a better Kubernetes administrator.

In this guide, I will walk you through how to create:
- A memory report using various memory commands
- A system storage report
- A list of running processes .

Since we are required to use Linux for this, we will need a few things.

1.Command line interface or Terminal
2.A user with root Privileges
3.Package Manager apt for linux or  yum for centos depending on the distro you have 

The commands in this guide will work regardless of the Linux distribution you’re using. However, if you’re using an Ubuntu-based distribution, you may need to use sudo snap install to install some of the commands for the task in this guide. Here is the format for installing a snap sudo snap install <command name>. Snaps are software packages that are containerized and can operate on any system.

snap
fig 1. snap install
  1. Memory Report

In Linux, we can by default check memory information by looking at the content of /proc/meminfo but usually, the output of this command would be overwhelming and not exactly human-readable. Before we proceed it would be good to point out that the options that we can use to make our command more readable below

Some important options that can be used with memory command

Options Result
-b output in bytes
– k output in kilobytes
– m output in megabytes
– g output in gigabytes
– l detailed low and high memory statistics
– o old format (no -/+buffers/cache line)
– t total for RAM + swap
– s update every [delay] seconds
– c update [count] times

Also, we need to take note that the result of a process can be redirected into a file using >

The cat command is used used to view the content of a file, if we are to view the default memory information on our machine, we would use the command below

cat /proc/memfile
cat
fig2. /proc/meminfo

The content of the image above is really not properly defined and hard to decipher with regards to memory but it is the default, lets try this again with another command called :

Free
free
fig 3 free command with options

To make this a little more friendly to the human eye and readable as well, we need to add two more options -g (gigabyte) and h (human-readable)

free -gh
update2
fig 4 . free command with options

If we compare fig 3 to fig 4 we will notice that the size is more relatable and also we have M appended to it. That is what the options have helped us to accomplish

Delivery of the Report

In Linux, we send or redirect information requested information into files. So let’s create one so that we can redirect the output of our memory information into it.

touch techDirectArchive
redirect-1
fig 5. delivery of memory info

In the case of our example above where we have decided to check what memory resources were being utilized on the system, we can create a file using the touch command and redirect the required memory information to the file as we can see in fig 5

Our first objective has been achieved, however, there are other commands about memory that we might want to check out. The first one is vmstat 

vmstat displays  information about processes, memory,block IO, system, and CPU activity.
vmstat
fig6. vmstat

To deliver the report on vmstat, we have to redirect the output of this process to a file called techdirectArchive_vmstat, then we need to create the file with the touch command just as in the techDirectArchive file above

touch techDirectArchive_vmstat
vmstat-1
fig7. vmstat delivery

There are instances when all we want to observe is the CPU and Memory utilization, in which case the top command is the best solution. The advantage of the top command is that its numbers are updated in real-time.

top
top
fig8. top

You need to hit q on your keyboard to be able to escape from the top session. The cool thing about top is that we can use command-line options to manipulate it.

Our last command with regards to memory is htop. It has a better interface than the top command and has better control because the output of the command is graphical in nature. htop shows the following information

  • uptime
  • average load
  • tasks running
  • number of users logged in
  • number of CPUs/CPU utilization
  • memory/swap system processes
htop
fig 9. htop

We decided to run the htop command on ubuntu and as you can see it looks more appealing than the output of the top command.

System Storage Report

System storage in Linux has to do with disk usage and we can get the mount points and the usage statics with the command :

df
df
fig 10. df

This command shows a list of all the mount points on the system and also the available and used up spaces. To make this human-readable we need to add the options of -h

df-h
fig 11. df-h

If we noticed the sizes are easier to read with the first one /dev/mapper/centos-report as 17G. 1.6G used and 16G available. If we compare this to what we have in fig.10 fig 11 is more relatable

if we are to send a report to the file techDirectArchive_df we will use the command

df -h > techDirectArchive

To view the content of our report that was sent to techDirectArchive_df, we need to use the cat command

cat techDirecTArchive_df
delivery-of-df-1
fig 12. delivery of df-h

3. Running Processes Report

Process status in Linux is used to view processes running in Linux the command for this is shown below

ps
ps
fig 13 running processes
ps aux 

The aux option added to the ps command will help to display all the extra parameters need to understand a system fully well.

runningprocess

Other comparable options display fewer helpful information than the ps aux command. The UID section, for instance, is replaced with a human-readable username column.

In Summary, Memory command like free with option can help us get useful information about swap and memory statics of our server, however, we there are also other useful commands like vmstats, top, and htop. When we are sending a memory command as a report, we need to redirect it to a file.

Mounts on a system can be checked using the df command adding options that will make it more human-readable. Finally, the process status command ps can be used to give a list of all running processes on a system, however, to make it richer we can add aux to it

Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x