From 8c752d4085df042d0b7a935f7e485559f2abf120 Mon Sep 17 00:00:00 2001 From: Ben Rady Date: Wed, 3 Jul 2024 13:06:46 -0500 Subject: [PATCH 1/2] Removing PyCharm project files (#37) Co-authored-by: Ben Rady --- .gitignore | 4 ++-- .idea/.gitignore | 8 -------- .idea/alogamous.iml | 8 -------- .idea/inspectionProfiles/Project_Default.xml | 7 ------- .idea/inspectionProfiles/profiles_settings.xml | 6 ------ .idea/misc.xml | 7 ------- .idea/modules.xml | 8 -------- .idea/vcs.xml | 6 ------ 8 files changed, 2 insertions(+), 52 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/alogamous.iml delete mode 100644 .idea/inspectionProfiles/Project_Default.xml delete mode 100644 .idea/inspectionProfiles/profiles_settings.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/vcs.xml diff --git a/.gitignore b/.gitignore index 5a788b9..1aa5cfc 100644 --- a/.gitignore +++ b/.gitignore @@ -233,8 +233,8 @@ crashlytics.properties crashlytics-build.properties fabric.properties -# Editor-based Rest Client -.idea/httpRequests +# Ignore idea project files +.idea # Android studio 3.1+ serialized cache file .idea/caches/build_file_checksums.ser diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/.idea/alogamous.iml b/.idea/alogamous.iml deleted file mode 100644 index 8fe898a..0000000 --- a/.idea/alogamous.iml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml deleted file mode 100644 index b026d03..0000000 --- a/.idea/inspectionProfiles/Project_Default.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml deleted file mode 100644 index cc5462d..0000000 --- a/.idea/inspectionProfiles/profiles_settings.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 1b6d17f..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 6306bae..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index dcb6b8c..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - From c4622b4f3e2ef6fcec55c1f84a606a54b551e44b Mon Sep 17 00:00:00 2001 From: ayeshaa475 Date: Wed, 3 Jul 2024 13:10:30 -0500 Subject: [PATCH 2/2] Adding a description (#35) * Adding my name * adding description --------- Co-authored-by: Ayesha Ahmed Co-authored-by: Lauren Assour <66278181+laurenassour@users.noreply.github.com> --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 505b479..6de4239 100644 --- a/README.md +++ b/README.md @@ -7,10 +7,21 @@ ## Table of Contents +- [Description](#description) - [Installation](#installation) - [Development](#development) - [License](#license) +## Description +A Python program that can process log files and generate a daily report on anomalies in a set of logs. +- It should be able to read multiple files and output an html-formatted file. +- It should have multiple metrics/checks for anomalous log lines. +- It should be able to take in a log line format so that it knows how to extract useful information from a log line. +- It should be able to traverse a well-defined file system structure to access all logs. +- It should be able to generate metrics that span multiple files. +- It should be well-tested. + + ## Installation ```console