Skip to content

marazmista/simple-netstat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

simple-netstat

At first I wanted little program, that shutdown my pc when all night downloads have been completed. However, it grow to simple netstat.

Options


You can pass config file in fist parameter: simple-netstat /path/to/config/configfilename.

  • Mode:
    • 1 - Monitor: just watch network and store data in logfile.
    • 2 - ShutdownApp: closes program when reaches Positive idle speed pases.
    • 3 - ShutdownPC: shutdown pc when reaches Positive idle speed pases. This is done by command sudo shutdown -hP now.
  • Interface: network interface to monitor. cat /sys/class/net/ to find out what interfaces available.
  • Interval: [seconds] how often program will read network data from sys files.
  • Idle speed: [kilobytes per interval] how many kilobytes is transffered in given interval.
  • Positive idle speed passes: how many times in a row program find out that notwork traffic is below Idle Speed, and then shutdown pc.
  • Verbose: [0-1] be verbose or only log file?

Log file


Log file is something like this (ignore second line):

Interface: wlan0  interval: 5 idleSpeed: 250
12:47:20;18884;2813;0;0
12:47:25;0;0;0;0
12:47:30;0;0;0;0
12:47:35;4;0;0;0
12:47:40;0;0;0;0
12:47:45;0;0;0;0
12:47:50;0;1;0;0
12:47:55;4;0;0;0

format:

Hour;Downloaded kB/interval;Uploaded kB/interval;Download speed below Idle Speed;Ipload speed below Idle Speed

You can paste log file to Calc or Excel to make charts or stuff like that.

Build


Type: cmake src/ && make

About

Simple network interface monitor.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages