Skip to content

This project involves setting up a Linux server on Zorin OS to collect data about the PC workload, including CPU, Memory, HDD, and Network usage. The data is saved into a text file and sent via email every 12 hours using a Python script and a systemd file.

License

Notifications You must be signed in to change notification settings

MennahMabrouk/Linux-service

Repository files navigation

Linux-service

This project involves creating a Linux server on Zorin OS to collect data about your PC workload, including CPU usage, memory usage, HDD usage, and network usage. The collected data is then saved into a text file.

mm

To accomplish this, you have created a Python script that runs as a systemd service on the Zorin OS server. The script collects the necessary data about the system workload and writes it to a text file at regular intervals. The interval has been set to 12 hours as per the project requirements.

In addition to collecting and saving the data, the script is also responsible for sending an email with the text file attached. The email is sent every 12 hours, along with the latest workload data.

To ensure that the service is always running, you have created a systemd file for it. The systemd file defines the service and specifies how it should be managed by the system. This includes settings such as the service start-up behavior, logging, and resource allocation.

Overall, this project demonstrates how to use Linux and Python to collect and analyze system workload data. It also showcases how to create a systemd service and use it to automate tasks on a Linux server.


Steps

Monitoring Workload on Zorin OS Server

This guide will help you set up a Python script to collect system workload data and send it via email on a Linux server running Zorin OS.

Installation

  1. Install Zorin OS on your server machine.

  2. Open the terminal and install the necessary packages for sending email and collecting system workload data using the following commands:

sudo apt-get update
sudo apt-get install python3-pip sysstat mailutils

Collecting Workload Data

  1. Write a Python script to collect system workload data and save it to a text file. You can use the psutil module to collect CPU and memory usage data and the iostat command to collect HDD and network usage data. You can save the data to a text file using the csv module in Python.

  2. Save the Python script to a suitable location on your server.

Creating a Systemd Service

  1. Create a systemd service file for the Python script. This file should specify the service start-up behavior, dependencies, and resource allocation. You can use a text editor such as Nano or Vim to create the service file.

  2. The service file should be saved in the /etc/systemd/system/ directory with a .service extension.

[Unit]
Description=Workload Monitor
After=network.target

[Service]
Type=simple
Restart=always
RestartSec=60
User=root
ExecStart=/usr/bin/python3 /path/to/your/script.py

[Install]
WantedBy=multi-user.target

Starting and Enabling the Service

  1. Start the service using the following command:
sudo systemctl start <service_name>
  1. Enable the service to start automatically on system boot using the following command:
sudo systemctl enable <service_name>

Testing

  1. Test the service by checking that the text file with system workload data is being created and updated every 12 hours.
  2. You can also check that the email is being sent with the text file attached.

Note

@@ The `combined.py` file is the written code of `linux.py` and the `notification.py`  @@

About

This project involves setting up a Linux server on Zorin OS to collect data about the PC workload, including CPU, Memory, HDD, and Network usage. The data is saved into a text file and sent via email every 12 hours using a Python script and a systemd file.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages