From 1128a01c74a17de72f24ccc13c93acad18cf23e2 Mon Sep 17 00:00:00 2001 From: cynipe Date: Tue, 31 Jul 2018 19:51:55 +0900 Subject: [PATCH] add example usage for get with --filter --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 1b659cb..9a1d5f7 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,9 @@ sudo dpkg -i # Get production log group for the last 2 hours saw get production --start -2h + # Get production log group for the last 2 hours and filter for "error" + saw get production --start -2h --filter error + # Get production log group for api between 26th June 2018 and 28th June 2018 saw get production --prefix api --start 2018-06-26 --stop 2018-06-28 ```