Skip to content

bassem-shoukry/Logs-Analysis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

Logs Analysis Project - Udacity Full Stack ND

DESCRIPTION

This reporting tool is a Python program with PostgreSQL database to print out reports based on the data given from news database.

The reports answers the following three questions given below:

  1. What are the most popular three articles of all time?
  2. Who are the most popular article authors of all time?
  3. On which days did more than 1% of requests lead to errors?

RUNNING THE PROGRAM

To get started, I recommend you to download Vagrant, VirtualBox and VM configuration from links given below,

TO INSTALL AND MANAGE THE PROGRAM USING VIRTUAL MACHINE

  • Go to VM configuration folder

  • Change to this directory in your terminal with cd

  • Use vagrant up to bring the virtual machine online and vagrant ssh to login.

  • Download the database provided by Udacity from here.

  • Unzip the file in inside the vagrant folder.

  • Change to vagrant directory in your terminal with cd /vagrant/

  • Load the database using psql -d news -f newsdata.sql.

  • Connect to the database using psql -d news.

  • Create the Views given below. Then exit psql.

  • Now execute the Python file - python logs_analysis.py

Otherwise download python 2.7 and PostgreSQL to run this program.

Project Views

CREATE VIEW articles_view AS select id,title,slug,author from articles;
CREATE VIEW log_view as select path,count('*') as views_count from log group by path

About

Logs Analysis Project - Udacity Full Stack ND

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages