WebFund 2016W: Assignment 5: Difference between revisions
Created page with "'''This assignment is not yet finalized.''' In this assignment you will create <tt>analyzeLogs</tt>, a node web app that will allow querying and visualization of uploaded log..." |
No edit summary |
||
Line 8: | Line 8: | ||
* Listing log entries matching a given query for services and messages | * Listing log entries matching a given query for services and messages | ||
* A graph of the number of log messages per hour over a 24 hour period | * A graph of the number of log messages per hour over a 24 hour period | ||
* A way to download queried log entries | |||
This assignment is worth 10 points and is due on March 17, 2016. Upload a zip file with your working analyzeLogs application. The zip file should produce an "analyzeLogs" directory (just as the template file does). Please list any collaborators and resources you used in a file "analyzeLogs/comments.txt". | This assignment is worth 10 points and is due on March 17, 2016. Upload a zip file with your working analyzeLogs application. The zip file should produce an "analyzeLogs" directory (just as the template file does). Please list any collaborators and resources you used in a file "analyzeLogs/comments.txt". | ||
Line 15: | Line 16: | ||
* 2 for storing logs in MongoDB properly | * 2 for storing logs in MongoDB properly | ||
* 3 for listing entries in response to a query | * 3 for listing entries in response to a query | ||
* | * 1 for allowing such listings to be downloaded IN THE ORDER they were in the original file | ||
* 3 for graphing hourly frequency of logs |
Revision as of 20:05, 10 March 2016
This assignment is not yet finalized.
In this assignment you will create analyzeLogs, a node web app that will allow querying and visualization of uploaded log files. Base your app on this template. You can use these files as test data. Your app, however, should work with other files in standard UNIX syslog format.
Your app should implement the following features:
- Uploading of logs
- Logs stored in MongoDB (as per storeLogs.js)
- Listing log entries matching a given query for services and messages
- A graph of the number of log messages per hour over a 24 hour period
- A way to download queried log entries
This assignment is worth 10 points and is due on March 17, 2016. Upload a zip file with your working analyzeLogs application. The zip file should produce an "analyzeLogs" directory (just as the template file does). Please list any collaborators and resources you used in a file "analyzeLogs/comments.txt".
Points will be awarded as follows:
- 1 for uploading logs
- 2 for storing logs in MongoDB properly
- 3 for listing entries in response to a query
- 1 for allowing such listings to be downloaded IN THE ORDER they were in the original file
- 3 for graphing hourly frequency of logs