From ddbfa25f8ed0d63dffb916e1c3d5a00d4cb933b2 Mon Sep 17 00:00:00 2001 From: gardient Date: Fri, 21 Oct 2016 14:58:25 +0300 Subject: [PATCH] Create README.md --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..abaa517 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# CloudWatchLogDownloader +Download full logs from AWS CloudWatch + +## Who is it for? +For idiots like me who just want a text dump of the cloud watch log without going through S3 + +## Why .NET? +Because I was working with the .NET AWSSDK when writing this. + +## Why not .NET CORE? +Because the AWSSDK.CloudWatchLogs nuget package doesn't support it. (As of writing this README) + +## Usage +If you're still reading this means you want to use this abomination... Good. + +### Command line params +|short|long|Description| +|-----|----|-----------| +|-g|--logGroup|The log group you want to select the stream from, can end with '*' in which case the option to choose from all groups starting with this will be given| +|-s|--logStream|The log stream you want to save, can end with '*' in which case the option to choose from all groups starting with this will be given| +|-o|--outputFile|The file to output the logs to.| + +If any of the above are not specified the program will prompt for them