Open main menu

CDOT Wiki β

Changes

OPS435 Assignment 1 A

4,695 bytes added, 07:46, 7 June 2018
Header
[[Category:OPS435-Python]][[Category:rchan]]
<font color='red'>'''DRAFT - Under Construction'''</font>=Assignment 1 - Users' Usage Report='''Weight:''' 2015% of the overall grade
'''Due Date:''' Ask your professor for exact date
==Overview==
Most system administrators would like to know the utilization of their systems by their users. On a Linux system, the userseach user' s login records are normally stored in the binary file /var/log/wtmp. The login records 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 running the 'last' commandwith the '-F' flag on:
<pre>
$ last -F
rchan avhuo pts/0 9 10.43.222.35 Tue Feb 13 16:0 Mon Jan 8 22:4053:02 42 2018 - Tue Jan 9 17Feb 13 16:3157:50 02 2018 (1800:5103) rchan clee18 pts/0 6 10.40.43.94 Tue Feb 13 16:0 Mon Jan 8 2151:47:32 2018 - Mon Jan 8 21Tue Feb 13 16:4756:38 13 2018 (00:0004) rchan clee18 pts/6 10.40.43.94 Tue Feb 13 16:0 50:0 Mon Jan 8 21:46:36 20 2018 - Tue Jan 9 17Feb 13 16:3651:18 27 2018 (1900:4901) (unknown shana pts/2 toroon4512w-lp13 Tue Feb 13 16:0 47:0 Mon Jan 8 20:25:13 48 2018 - Mon Jan 8 21Tue Feb 13 16:4658:36 31 2018 (0100:2110) reboot system boot 3hfang171 pts/4 24.10114.0-51450.10.2. Mon Jan 8 1550 Tue Feb 13 16:2531:07 38 2018 - Fri Jan 12 01Tue Feb 13 17:3148:18 39 2018 (3+1001:0617) rchan bigia :0 :0 Mon Jan pts/8 17 10.247.6.126 Tue Feb 13 16:1928:04 43 2018 - Mon Jan 8 Tue Feb 13 17:3428:29 31 2018 (00:1559) (unknown ckim16 pts/2 10.40.91.236 Tue Feb 13 16:22:36 2018 - Tue Feb 13 16:0 45:0 Mon Jan 10 2018 8 (00:22) ddchan pts/2 10.43.115.162 Tue Feb 13 16:4819:02 29 2018 - Mon Jan 8 17Tue Feb 13 16:1922:03 00 2018 (00:3102) reboot tsliu2 system boot 3.pts/4 10.0-51440.10105.2. Mon Jan 8 11130 Tue Feb 13 16:4717:56 21 2018 - Mon Jan 8 17Tue Feb 13 16:3430:30 10 2018 (0500:4612) rchan shana :0 :0 Mon Jan 8 pts/13 10.40.91.247 Tue Feb 1316:5507:51 52 2018 - Mon Jan 8 14Tue Feb 13 16:0145:26 52 2018 (00:0538) (unknown :0 :0 Mon Jan 8 tchiu2 pts/11 10.40.105.130 Tue Feb 1316:5507:37 43 2018 - Mon Jan 8 Tue Feb 1316:5517:51 12 2018 (00:0009)
...
</pre>
In this assignment, your task is to create a python program with well designed functions to produce daily, weekly, and monthly usage report reports by user (and/or by other criteria) 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 ==
=== Program Name and valid command line arguments ===
Name your Python3 program as <code>usage_reportur.py</code>. The program should accept the following one or more "file name" as its command line parametersand other optional parameters as shown below. Your ur.py script should produce the following usage when run with the --help option:* <b><codepre>[rchan@centos7 a1]$ python3 ./ur.py -husage: ur.py [-h] [-l {user</code></b> or <b><code>,host}] [-r RHOST] [-u</code></b> as an optional first argumentt {daily,weekly, followed by:monthly}]* <b><code>filename</code></b>, or [-u USER] [-v]* <b><code>filename1 filename2 </code></b> etc . F [F .. - any number of filenames from 1 to as many as the command-line supports.]
If the first argument is <b><code>--user</code></b> or <b><code>-u</code></b>, then all the usage report to be generated should be Usage Report based on user only. Only regular users should be included in the user based usage report (excluding super user).last command
If there is no filename provided at the command line, gets the login records from the 'last' command with the appropriate flags.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 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 filename 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 <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 Summer 2018Program: usage_reportur.py
Author: "Student Name"
The python code in this file (usage_reportur.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
</source>
=== Main Menu ===
When your Python program is running, it should present the user with the following menu based on the given command line arguments:
==== Daily Usage Report by User ====The following is a sample Daily Usage Report for user1 on host.cty.senecacollege.ca:<sourcepre>Reading login recordsDaily Usage Report for user1============================Date Usage in seconds2018 02 14 602018 02 07 452018 02 01 5 Total 110</pre> ==== Daily Usage Report by Remote Host====The following is a sample Daily Usage Report from Remote Host 10.94.10.25 on host.cty. Donesenecacollege.ca:
<pre>Daily Usage Report - Main Menufrom 10.94.10.25 ===================================Date Usage in seconds2018 02 14 302018 02 07 412018 02 01 9 Total 80</pre> ==== Weekly Usage Report by User ====The following is a sample Weekly Usage Report for user1 on host.cty.senecacollege.ca: <pre>Weekly Usage Report for user1d) Daily =============================Week # Usage in Seconds2017 01 1602017 02 452017 03 52017 04 20 Total 220</pre> ==== Weekly Usage Report by Remote Host ====The following is a sample Weekly Usage Reportfrom the remote host 10.94.10.25 on host.cty.senecacollege.ca: <pre>w) Weekly Usage Reportfrom 10.94.10.25m) ====================================Week # Usage in Seconds2017 01 302017 03 412017 05 92017 06 11 Total 91</pre> ==== Monthly Usage Report by User ====The following is a sample Monthly Usage Report for user1 on host.cty.senecacollege.ca:<pre>Monthly Usage Report for user1==============================Month Usage in Seconds2017 01 1602017 02 45 Total 205</pre> ==== Monthly Usage Report by Remote Host ====The following is a sample Monthly Usage Reportfor 10.94.10.25 on host.cty.senecacollege.ca:q) Quit<pre>Monthly Usage Report from 10.94.10.25=====================================Month Usage in Seconds2017 01 302017 02 41 Total 71</sourcepre== 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 hostTo 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.
Option <b>d</b>Once you have finished coding a function, <b>w</b>you should start a Python3 interactive shell, import your functions and <b>m</b> when selected will display a new sub-menumanually call the function you want to test.
When option <b>q</b> Once you have all the individual function tested and that each is selectedworking properly, you 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 should terminateon Blackboard.
=== Daily Usage Menu =Sample login records file and sample run ==* [https://scs.senecac.on.ca/~raymond.chan/ops435/a1/ Sample test date files and sample runs]
=== Weekly Usage Menu =Rubric ==
{| class="wikitable" border== "1"! 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 Menu ===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 ||
== Sample login records file ==|}
== Submission ==
After fully testing your program, submit the your ur.py file on Blackboard
1,760
edits