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 @@ - - - - - - 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