Difference between revisions of "OPS435 Assignment 1 A"

From CDOT Wiki
Jump to: navigation, search
(Sample login records file)
(Header)
 
(22 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
[[Category:OPS435-Python]][[Category:rchan]]
 
[[Category:OPS435-Python]][[Category:rchan]]
<font color='red'>'''DRAFT - Under Construction'''</font>
 
 
=Assignment 1 - Usage Report=
 
=Assignment 1 - Usage Report=
 
'''Weight:''' 15% of the overall grade
 
'''Weight:''' 15% of the overall grade
Line 29: Line 28:
 
In this assignment, your task is to create a python program to produce daily, weekly, and monthly usage reports by user or by remote host based on the information obtained from the 'last' command or given files which contain similar information as the 'last' command.
 
In this assignment, your task is to create a python program to produce daily, weekly, and monthly usage reports by user or by remote host based on the information obtained from the 'last' command or given files which contain similar information as the 'last' command.
  
 +
== Resource for useful modules ==
 +
* the <b>argparse</b> module
 +
** [https://docs.python.org/3/howto/argparse.html Argparse Tutorial] - should read this first.
 +
** [https://docs.python.org/3/library/argparse.html Argparse API reference information page]
 +
* the <b>time</b> module
 +
** [https://www.tutorialspoint.com/python3/python_date_time.htm Time module Tutorial]
 +
** [https://docs.python.org/3/library/time.html Time module API reference page]
 +
 
 
== Instructions ==
 
== Instructions ==
  
 
=== Program Name and valid command line arguments ===
 
=== Program Name and valid command line arguments ===
Name your Python3 program as <code>usage_report.py</code>. The program should accept zero or more "file name" as its command line parameters. for examples:
+
Name your Python3 program as <code>ur.py</code>. The program should accept one or more "file name" as its command line parameters and other optional parameters as shown below. Your ur.py script should produce the following usage when run with the --help option:
* <b><code>python3 usage_report.py</code></b>, or
+
<pre>
* <b><code>python3 usage_report.py filename</code></b>, or
+
[rchan@centos7 a1]$ python3 ./ur.py -h
* <b><code>python3 usage_report.py filename1 filename2 </code></b> etc ... - any number of file names from 1 to as many as the command-line supports.
+
usage: ur.py [-h] [-l {user,host}] [-r RHOST] [-t {daily,weekly,monthly}]
 +
            [-u USER] [-v]
 +
            F [F ...]
 +
 
 +
Usage Report based on the last command
 +
 
 +
positional arguments:
 +
  F                    list of files to be processed
 +
 
 +
optional arguments:
 +
  -h, --help            show this help message and exit
 +
  -l {user,host}, --list {user,host}
 +
                        generate user name or remote host IP from the given
 +
                        files
 +
  -r RHOST, --rhost RHOST
 +
                        usage report for the given remote host IP
 +
  -t {daily,weekly,monthly}, --type {daily,weekly,monthly}
 +
                        type of report: daily, weekly, and monthly
 +
  -u USER, --user USER  usage report for the given user name
 +
  -v, --verbose        tune on output verbosity
 +
 
 +
Copyright 2018 - Raymond Chan
 +
</pre>
 +
Replace the last line with your own full name
 +
 
  
If there is no command line argument, your python program should get the login records from the 'last' command with the appropriate flags.
+
If one of the file name given is "last", your python program should get the login records from the 'last' command with the appropriate flags.
  
 
If there is one file name provided at the command line, read the login records from the contents of the given file. The format of each line in the file should be the same as the output of 'last -Fiw'.
 
If there is one file name provided at the command line, read the login records from the contents of the given file. The format of each line in the file should be the same as the output of 'last -Fiw'.
Line 47: Line 78:
 
All your Python codes for this program must be placed in a <font color='red'><b><u>single source file</u></b></font>. Please include the following declaration by <b><u>you</u></b> as comment in your Python source code file (replace "Student Name" with your own name):
 
All your Python codes for this program must be placed in a <font color='red'><b><u>single source file</u></b></font>. Please include the following declaration by <b><u>you</u></b> as comment in your Python source code file (replace "Student Name" with your own name):
  
<source>OPS435 Assignment 1 - Winter 2018
+
<source>OPS435 Assignment 1 - Summer 2018
Program: usage_report.py
+
Program: ur.py
 
Author: "Student Name"
 
Author: "Student Name"
The python code in this file (usage_report.py) is original work written by
+
The python code in this file (ur.py) is original work written by
 
"Student Name". No code in this file is copied from any other source  
 
"Student Name". No code in this file is copied from any other source  
 
including any person, textbook, or on-line resource. I have not shared
 
including any person, textbook, or on-line resource. I have not shared
Line 58: Line 89:
 
</source>
 
</source>
  
=== Main Menu ===
 
When your Python program is running, it should present the user with the following menu:
 
 
<source>Reading login records... Done.
 
 
Usage Report - Main Menu
 
========================
 
d) Daily Usage Report
 
w) Weekly Usage Report
 
m) Monthly Usage Report
 
q) Quit
 
</source>
 
 
Display an appropriate sub-menu when option <b>d</b>, <b>w</b>, or <b>m</b> is selected.
 
 
When option <b>q</b> is selected, you program should terminate.
 
 
Redisplay the same menu if the user entered any other letters.
 
 
=== Daily Usage Menu ===
 
* If the Daily Usage Report option is selected from the Main Menu, the following sub-menu should be presented on the screen:
 
 
<source>
 
Daily Usage Report Menu
 
=======================
 
u) By User
 
h) By Remote Host
 
r) Return to Main Menu
 
</source>
 
 
When option <b>u</b> is selected, the sub-menu for Daily Usage Report by User should be displayed.
 
 
When option <b>h</b> is selected, the sub-menu for Daily Usage Report by Remote Host should be displayed.
 
 
When option <b>r</b> is selected, the main menu should be displayed.
 
 
Redisplay the same menu if the user entered any other letters.
 
  
 
==== Daily Usage Report by User ====
 
==== Daily Usage Report by User ====
<source>
 
Daily Usage Report - by User
 
============================
 
0) All users
 
1) user1
 
2) user2
 
3) user3
 
...
 
9) user9
 
r) Return to Daily Usage Report Menu
 
</source>
 
 
<b>Note</b>: If there are fewer than 9 users, display only the actual number of users on the menu.
 
 
When option <b>r</b> is selected, the previous Daily Usage Report menu should be displayed.
 
 
When one of <b>0-9</b> is selected, the Daily Usage Report for the selected user(s) should be generated.
 
 
Redisplay the same menu if the user entered any other digits/letters.
 
 
 
The following is a sample Daily Usage Report for user1 on host.cty.senecacollege.ca:
 
The following is a sample Daily Usage Report for user1 on host.cty.senecacollege.ca:
 
<pre>
 
<pre>
Daily Usage Report for user1 on host.cty.senecacollege.ca
+
Daily Usage Report for user1
=========================================================
+
============================
Date          Usage in Minutes
+
Date          Usage in seconds
2018-02-14          60
+
2018 02 14          60
2018-02-07          45
+
2018 02 07          45
2018-02-01          5
+
2018 02 01          5
  
 
Total              110
 
Total              110
Line 130: Line 104:
  
 
==== Daily Usage Report by Remote Host====
 
==== Daily Usage Report by Remote Host====
<source>
 
Daily Usage Report - by Remote Host
 
===================================
 
0) All Remote Host
 
1) 10.94.10.25
 
2) 10.94.10.120
 
3) 172.16.99.1
 
...
 
9) 192.168.45.3
 
r) Return to Daily Usage Report Menu
 
</source>
 
 
<b>Note</b>: If there are fewer than 9 remote hosts, display only the actual number of remote host on the menu.
 
 
When option <b>r</b> is selected, the previous Daily Usage Report menu should be displayed.
 
 
When one of <b>0-9</b> is selected, the Daily Usage Report for the selected Remote Host(s) should be generated.
 
 
Redisplay the same menu if the user entered any other digits/letters.
 
 
 
The following is a sample Daily Usage Report from Remote Host 10.94.10.25 on host.cty.senecacollege.ca:
 
The following is a sample Daily Usage Report from Remote Host 10.94.10.25 on host.cty.senecacollege.ca:
  
 
<pre>
 
<pre>
Daily Usage Report from 10.94.10.25 on host.cty.senecacollege.ca
+
Daily Usage Report from 10.94.10.25  
================================================================
+
===================================
Date          Usage in Minutes
+
Date          Usage in seconds
2018-02-14          30
+
2018 02 14          30
2018-02-07          41
+
2018 02 07          41
2018-02-01          9
+
2018 02 01          9
  
 
Total              80
 
Total              80
 
</pre>
 
</pre>
 
=== Weekly Usage Menu ===
 
* If the Weekly Usage Report option is selected from the Main Menu, the following sub-menu should be presented on the screen:
 
 
<source>
 
Weekly Usage Report Menu
 
========================
 
u) By User
 
h) By Remote Host
 
r) Return to Main Menu
 
</source>
 
 
When option <b>u</b> is selected, the sub-menu for Weekly Usage Report by User should be displayed.
 
 
When option <b>h</b> is selected, the sub-menu for Weekly Usage Report by Remote Host should be displayed.
 
 
When option <b>r</b> is selected, the main menu should be displayed.
 
  
 
==== Weekly Usage Report by User ====
 
==== Weekly Usage Report by User ====
<source>
 
Weekly Usage Report - by User
 
=============================
 
0) All Users
 
1) User1
 
2) User2
 
3) User3
 
...
 
9) User9
 
r) Return to Weekly Usage Report Menu
 
</source>
 
 
<b>Note</b>: If there are fewer than 9 users, display only the actual number of user on the menu.
 
 
When option <b>r</b> is selected, the previous Weekly Usage Report menu should be displayed.
 
 
When one of <b>0-9</b> is selected, the Weekly Usage Report for the selected user(s) should be generated from week 1 to week 52, skips the week where the weekly usage is zero.
 
 
Redisplay the same menu if the user entered any other digits/letters.
 
 
 
The following is a sample Weekly Usage Report for user1 on host.cty.senecacollege.ca:
 
The following is a sample Weekly Usage Report for user1 on host.cty.senecacollege.ca:
  
 
<pre>
 
<pre>
Weekly Usage Report for user1 on host.cty.senecacollege.ca
+
Weekly Usage Report for user1
=========================================================
+
=============================
Week #         Usage in Minutes
+
Week #       Usage in Seconds
1                  160
+
2017 01            160
2                  45
+
2017 02            45
3                    5
+
2017 03              5
4                  20
+
2017 04            20
  
 
Total              220
 
Total              220
Line 216: Line 133:
  
 
==== Weekly Usage Report by Remote Host ====
 
==== Weekly Usage Report by Remote Host ====
<source>
 
Weekly Usage Report - by Remote Host
 
===================================
 
0) All Remote Hosts
 
1) 10.94.10.25
 
2) 10.94.10.120
 
3) 172.16.99.1
 
...
 
9) 192.168.45.3
 
r) Return to Weekly Usage Report Menu
 
</source>
 
 
<b>Note</b>: If there are fewer than 9 remote hosts, display only the actual number of remote host on the menu.
 
 
When option <b>r</b> is selected, the previous Weekly Usage Report menu should be displayed.
 
 
When one of <b>0-9</b> is selected, the Weekly Usage Report for the selected Remote Host(s) should be generated from week 1 to week 52, skip the week where the weekly usage is zero.
 
 
Redisplay the same menu if the user entered any other digits/letters.
 
 
 
The following is a sample Weekly Usage Report from the remote host 10.94.10.25 on host.cty.senecacollege.ca:
 
The following is a sample Weekly Usage Report from the remote host 10.94.10.25 on host.cty.senecacollege.ca:
  
 
<pre>
 
<pre>
Daily Usage Report from 10.94.10.25 on host.cty.senecacollege.ca
+
Weekly Usage Report from 10.94.10.25
================================================================
+
====================================
Week #     Usage in Minutes
+
Week #       Usage in Seconds
1                30
+
2017 01            30
3                41
+
2017 03            41
5                9
+
2017 05              9
6                11
+
2017 06            11
  
Total           91
+
Total               91
 
</pre>
 
</pre>
 
=== Monthly Usage Menu ===
 
* If the Monthly Usage Report option is selected from the Main Menu, the following sub-menu should be presented on the screen:
 
 
<source>
 
Monthly Usage Report Menu
 
=========================
 
u) By User
 
h) By Remote Host
 
r) Return to Main Menu
 
</source>
 
 
When option <b>u</b> is selected, the sub-menu for Monthly Usage Report by User should be displayed.
 
 
When option <b>h</b> is selected, the sub-menu for Monthly Usage Report by Remote Host should be displayed.
 
 
When option <b>r</b> is selected, the main menu should be displayed.
 
  
 
==== Monthly Usage Report by User ====
 
==== Monthly Usage Report by User ====
<source>
 
Monthly Usage Report - by User
 
==============================
 
0) All Users
 
1) User1
 
2) User2
 
3) User3
 
...
 
9) User 9
 
r) Return to Monthly Usage Report Menu
 
</source>
 
 
<b>Note</b>: If there are fewer than 9 users, display only the actual number of user on the menu.
 
 
When option <b>r</b> is selected, the previous Monthly Usage Report menu should be displayed.
 
 
When one of <b>0-9</b> is selected, the Monthly Usage Report for the selected user(s) should be generated for Jan to Dec. Skips the month where the Monthly Usage is zero.
 
 
Redisplay the same menu if the user entered any other digits/letters.
 
 
 
The following is a sample Monthly Usage Report for user1 on host.cty.senecacollege.ca:
 
The following is a sample Monthly Usage Report for user1 on host.cty.senecacollege.ca:
 
<pre>
 
<pre>
Monthly Usage Report for user1 on host.cty.senecacollege.ca
+
Monthly Usage Report for user1
===========================================================
+
==============================
Month        Usage in Minutes
+
Month        Usage in Seconds
January           160
+
2017 01           160
February            45
+
2017 02            45
  
 
Total              205
 
Total              205
Line 300: Line 160:
  
 
==== Monthly Usage Report by Remote Host ====
 
==== Monthly Usage Report by Remote Host ====
<source>
 
Monthly Usage Report - by Remote Host
 
=====================================
 
0) All Remote Hosts
 
1) 10.94.10.25
 
2) 10.94.10.120
 
3) 172.16.99.1
 
...
 
9) 192.168.45.3
 
r) Return to Monthly Usage Report Menu
 
</source>
 
 
<b>Note</b>: If there are fewer than 9 remote hosts, display only the actual number of remote host on the menu.
 
 
When option <b>r</b> is selected, the previous Monthly Usage Report menu should be displayed.
 
 
When one of <b>0-9</b> is selected, the Monthly Usage Report for the selected Remote Host(s) should be generated for Jan to Dec. Skips that month where the Monthly Usage is zero.
 
 
Redisplay the same menu if the user entered any other digits/letters.
 
 
 
The following is a sample Monthly Usage Report for 10.94.10.25 on host.cty.senecacollege.ca:
 
The following is a sample Monthly Usage Report for 10.94.10.25 on host.cty.senecacollege.ca:
  
 
<pre>
 
<pre>
Monthly Usage Report from 10.94.10.25 on host.cty.senecacollege.ca
+
Monthly Usage Report from 10.94.10.25
================================================================
+
=====================================
Week #    Usage in Minutes
+
Month        Usage in Seconds
January          30
+
2017 01            30
February        41
+
2017 02            41
  
Total           71
+
Total               71
 
</pre>
 
</pre>
  
 
== Program Development and Testing ==
 
== Program Development and Testing ==
You should create function to handle the following sub-tasks:
+
You should create python functions to handle the following sub-tasks:
* displays main menu, sub-menu and get user's response via the keyboard
 
 
* gets login records from the output of "last" command and filters out unwanted records
 
* gets login records from the output of "last" command and filters out unwanted records
 
* reads login records from files and filters out unwanted records
 
* reads login records from files and filters out unwanted records
Line 340: Line 179:
 
* generate weekly usage reports by user or by remote host
 
* generate weekly usage reports by user or by remote host
 
* generate monthly usage reports by user or by remote host
 
* generate monthly usage reports by user or by remote host
To  help you with this assignment, [[OPS435 A1 Usage Report Template|here]] is a template you can use as a starting point in developing your Python Usage Report program.
+
To  help you with this assignment, [[OPS435 A1 Usage Report Template|here is a template]] you can use as a starting point in developing your Python Usage Report program.
  
Once you have finished coding a function, you can start a Python3 interactive shell, import your functions and manually call the function you want to test.
+
Once you have finished coding a function, you should start a Python3 interactive shell, import your functions and manually call the function you want to test.
+
 
== Sample login records file ==
+
Once you have all the individual function tested and that each is working properly, perform the final test with test data provided by your professor and verify that your program produces the correct results before submitting your python program on Blackboard.
* Will be provide on Feb 22, 2018
+
 
 +
== Sample login records file and sample run ==
 +
* [https://scs.senecac.on.ca/~raymond.chan/ops435/a1/ Sample test date files and sample runs]
  
 
== Rubric ==
 
== Rubric ==
Line 354: Line 195:
 
| Program Authorship Declaration ||1 ||
 
| Program Authorship Declaration ||1 ||
 
|-
 
|-
| Main Menu || 2 ||
+
| Program usage || 2 ||
|-
 
| Daily Usage Menu || 1 ||
 
|-
 
| Daily Usage Report by User Menu || 1 ||
 
|-
 
| Daily Usage Report by Remote Host Menu|| 1 ||
 
 
|-
 
|-
| Weekly Usage Menu || 1 ||
+
| Program Options || 2 ||
 
|-
 
|-
| Weekly Usage Report by User Menu || 1 ||
+
| Daily Usage Report by User || 2 ||
 
|-
 
|-
| Weekly Usage Report by Remote Host Menu|| 1 ||
+
| Daily Usage Report by Remote Host || 2 ||
 
|-
 
|-
| Monthly Usage Menu || 1 ||
+
| Weekly Usage Report by User || 2 ||
 
|-
 
|-
| Monthly Usage Report by User Menu || 1 ||
+
| Weekly Usage Report by Remote Host || 2 ||
 
|-
 
|-
| Monthly Usage Report by Remote Host Menu|| 1 ||
+
| Monthly Usage Report by User || 2 ||
 
|-
 
|-
| Get Login Records from 'last' || 3 ||
+
| Monthly Usage Report by Remote Host || 2 ||
 
|-
 
|-
| Get Login Records from files || 3 ||
+
| Get Login Records from 'last' || 2 ||
 
|-
 
|-
| Generate Daily Usage Report || 2 ||
+
| Get Login Records from files || 2 ||
 
|-
 
|-
| Generate Weekly Usage Report|| 2 ||  
+
| Generate user name list || 2 ||
 
|-
 
|-
| Generate Monthly Usage Report || 2 ||  
+
| Generate remote host IP list|| 2 ||  
 
|-
 
|-
| '''Total''' || 24 ||  
+
| '''Total''' || 25 ||  
  
 
|}
 
|}
  
 
== Submission ==
 
== Submission ==
After fully testing your program, submit the .py file on Blackboard
+
After fully testing your program, submit your  ur.py file on Blackboard

Latest revision as of 07:46, 7 June 2018

Assignment 1 - Usage Report

Weight: 15% of the overall grade

Due Date: Ask your professor for exact date

Late Penalty: 10% per school day, and note that this assignment must be completed satisfactorily in order to pass the course even if you get zero mark for this assignment.

Overview

Most system administrators would like to know the utilization of their systems by their users. On a Linux system, each user's login records are normally stored in the binary file /var/log/wtmp. The login record in this binary file can not be viewed or edited directly using normal Linux text commands like 'less', 'cat', etc. The 'last' command is often used to display the login records stored in this file in a human readable form. Please check the man page of the 'last' command for available options. The following listing is a sample output of the 'last' command with the '-F' flag on:

$ last -F
avhuo    pts/9        10.43.222.35     Tue Feb 13 16:53:42 2018 - Tue Feb 13 16:57:02 2018  (00:03)    
clee18   pts/6        10.40.43.94      Tue Feb 13 16:51:47 2018 - Tue Feb 13 16:56:13 2018  (00:04)    
clee18   pts/6        10.40.43.94      Tue Feb 13 16:50:20 2018 - Tue Feb 13 16:51:27 2018  (00:01)    
shana    pts/2        toroon4512w-lp13 Tue Feb 13 16:47:48 2018 - Tue Feb 13 16:58:31 2018  (00:10)    
hfang171 pts/4        24.114.50.50     Tue Feb 13 16:31:38 2018 - Tue Feb 13 17:48:39 2018  (01:17)    
bigia    pts/8        10.247.6.126     Tue Feb 13 16:28:43 2018 - Tue Feb 13 17:28:31 2018  (00:59)    
ckim16   pts/2        10.40.91.236     Tue Feb 13 16:22:36 2018 - Tue Feb 13 16:45:10 2018  (00:22)    
ddchan   pts/2        10.43.115.162    Tue Feb 13 16:19:29 2018 - Tue Feb 13 16:22:00 2018  (00:02)    
tsliu2   pts/4        10.40.105.130    Tue Feb 13 16:17:21 2018 - Tue Feb 13 16:30:10 2018  (00:12)    
shana    pts/13       10.40.91.247     Tue Feb 13 16:07:52 2018 - Tue Feb 13 16:45:52 2018  (00:38)    
tchiu2   pts/11       10.40.105.130    Tue Feb 13 16:07:43 2018 - Tue Feb 13 16:17:12 2018  (00:09)    
   
...

In this assignment, your task is to create a python program to produce daily, weekly, and monthly usage reports by user or by remote host based on the information obtained from the 'last' command or given files which contain similar information as the 'last' command.

Resource for useful modules

Instructions

Program Name and valid command line arguments

Name your Python3 program as ur.py. The program should accept one or more "file name" as its command line parameters and other optional parameters as shown below. Your ur.py script should produce the following usage when run with the --help option:

[rchan@centos7 a1]$ python3 ./ur.py -h
usage: ur.py [-h] [-l {user,host}] [-r RHOST] [-t {daily,weekly,monthly}]
             [-u USER] [-v]
             F [F ...]

Usage Report based on the last command

positional arguments:
  F                     list of files to be processed

optional arguments:
  -h, --help            show this help message and exit
  -l {user,host}, --list {user,host}
                        generate user name or remote host IP from the given
                        files
  -r RHOST, --rhost RHOST
                        usage report for the given remote host IP
  -t {daily,weekly,monthly}, --type {daily,weekly,monthly}
                        type of report: daily, weekly, and monthly
  -u USER, --user USER  usage report for the given user name
  -v, --verbose         tune on output verbosity

Copyright 2018 - Raymond Chan 

Replace the last line with your own full name


If one of the file name given is "last", your python program should get the login records from the 'last' command with the appropriate flags.

If there is one file name provided at the command line, read the login records from the contents of the given file. The format of each line in the file should be the same as the output of 'last -Fiw'.

If there is more than one file name provided, merges all the files together with the first one at the top and the last one at the bottom. Read and process the file contents in that order in your program.

Header

All your Python codes for this program must be placed in a single source file. Please include the following declaration by you as comment in your Python source code file (replace "Student Name" with your own name):

OPS435 Assignment 1 - Summer 2018
Program: ur.py
Author: "Student Name"
The python code in this file (ur.py) is original work written by
"Student Name". No code in this file is copied from any other source 
including any person, textbook, or on-line resource. I have not shared
this python program with anyone or anything except for submission for grading.  
I understand that the Academic Honesty Policy will be enforced and violators 
will be reported and appropriate action will be taken.


Daily Usage Report by User

The following is a sample Daily Usage Report for user1 on host.cty.senecacollege.ca:

Daily Usage Report for user1
============================
Date          Usage in seconds
2018 02 14          60
2018 02 07          45
2018 02 01           5

Total              110

Daily Usage Report by Remote Host

The following is a sample Daily Usage Report from Remote Host 10.94.10.25 on host.cty.senecacollege.ca:

Daily Usage Report from 10.94.10.25 
===================================
Date          Usage in seconds
2018 02 14          30
2018 02 07          41
2018 02 01           9

Total               80

Weekly Usage Report by User

The following is a sample Weekly Usage Report for user1 on host.cty.senecacollege.ca:

Weekly Usage Report for user1
=============================
Week #        Usage in Seconds
2017 01            160
2017 02             45
2017 03              5
2017 04             20

Total              220

Weekly Usage Report by Remote Host

The following is a sample Weekly Usage Report from the remote host 10.94.10.25 on host.cty.senecacollege.ca:

Weekly Usage Report from 10.94.10.25
====================================
Week #        Usage in Seconds
2017 01             30
2017 03             41
2017 05              9
2017 06             11

Total               91

Monthly Usage Report by User

The following is a sample Monthly Usage Report for user1 on host.cty.senecacollege.ca:

Monthly Usage Report for user1
==============================
Month         Usage in Seconds
2017 01            160
2017 02             45

Total              205

Monthly Usage Report by Remote Host

The following is a sample Monthly Usage Report for 10.94.10.25 on host.cty.senecacollege.ca:

Monthly Usage Report from 10.94.10.25
=====================================
Month         Usage in Seconds
2017 01             30
2017 02             41

Total               71

Program Development and Testing

You should create python functions to handle the following sub-tasks:

  • gets login records from the output of "last" command and filters out unwanted records
  • reads login records from files and filters out unwanted records
  • generate daily usage reports by user or by remote host
  • generate weekly usage reports by user or by remote host
  • generate monthly usage reports by user or by remote host

To help you with this assignment, here is a template you can use as a starting point in developing your Python Usage Report program.

Once you have finished coding a function, you should start a Python3 interactive shell, import your functions and manually call the function you want to test.

Once you have all the individual function tested and that each is working properly, perform the final test with test data provided by your professor and verify that your program produces the correct results before submitting your python program on Blackboard.

Sample login records file and sample run

Rubric

Task Maximum mark Actual mark
Program Authorship Declaration 1
Program usage 2
Program Options 2
Daily Usage Report by User 2
Daily Usage Report by Remote Host 2
Weekly Usage Report by User 2
Weekly Usage Report by Remote Host 2
Monthly Usage Report by User 2
Monthly Usage Report by Remote Host 2
Get Login Records from 'last' 2
Get Login Records from files 2
Generate user name list 2
Generate remote host IP list 2
Total 25

Submission

After fully testing your program, submit your ur.py file on Blackboard